/* Auth Pages Styles (Login & Free Trial) */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding: 40px 20px;
    margin-top: 80px; /* Accounts for fixed navbar */
}

.auth-box {
    background: var(--bg-light, #1e1e1e);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 450px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
}

/* Optional green accent line top of the box */
.auth-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color, #00ff00);
}

.auth-box h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.auth-box p {
    color: var(--text-color, #ccc);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
}

.auth-form label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #eee;
    font-size: 0.9rem;
}

.auth-form input {
    padding: 12px 15px;
    border: 1px solid #444;
    background: #0d0d0d;
    color: white;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary-color, #00ff00);
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.2);
}

.auth-options {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    align-items: center;
}

.auth-options label {
    margin: 0; /* Override default label margin for this specific layout */
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.auth-options a {
    color: var(--text-color, #ccc);
    text-decoration: none;
    transition: 0.3s ease;
}

.auth-options a:hover {
    color: var(--primary-color, #00ff00);
}

.auth-box .primary-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.auth-footer {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #999;
}

.auth-footer a {
    color: var(--primary-color, #00ff00);
    font-weight: bold;
    text-decoration: none;
    margin-left: 5px;
    transition: 0.3s ease;
}

.auth-footer a:hover {
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}