/* ===== AUTH PAGE STYLES ===== */
/* Hide navbar on auth pages to prevent positioning issues */
body.auth-page .navbar {
    display: none !important;
}

.auth-container {
    min-height: 100vh;
    width: 100%;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-wrapper {
    display: flex;
    width: 100%;
    max-width: 1200px;
    min-height: 600px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.auth-form-column {
    flex: 1;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-promo-column {
    flex: 1;
    background: linear-gradient(120deg, #0baf82, #1080ff);
    color: var(--white);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-form-container {
    width: 100%;
    max-width: 450px;
}

.auth-logo {
    margin-bottom: 2rem;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 0;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.auth-form .input-group {
    position: relative;
}

.auth-form .input-group-text {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-right: none;
    color: var(--gray-500);
}

.auth-form .form-control {
    border: 1px solid var(--gray-200);
    border-left: none;
    padding: 0.875rem 1rem;
    font-size: 1rem;
}

.auth-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(163, 215, 138, 0.25);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.forgot-password {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    color: var(--primary-green-dark);
    text-decoration: underline;
}

.divider {
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--gray-300);
}

.auth-switch {
    text-align: center;
    margin-top: 2rem;
}

.auth-switch p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.auth-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    color: var(--primary-green-dark);
    text-decoration: underline;
}

/* ===== VERIFY EMAIL SPECIFIC STYLES ===== */
.user-email {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0;
}

/* ===== EMAIL VERIFIED PAGE STYLES ===== */
.success-icon-container {
    margin-bottom: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.success-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.success-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.success-message {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

.features-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.features-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.features-list .feature-icon {
    color: var(--primary-green);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.login-button-container {
    margin-bottom: 1.5rem;
}

.login-button {
    background: var(--primary-green);
    border: none;
    padding: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.login-button:hover {
    background: var(--primary-green-dark);
    transform: translateY(-1px);
}

.device-info {
    text-align: center;
}

.help-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.help-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.help-text {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.help-links {
    display: flex;
    gap: 1rem;
}

.help-link {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-link:hover {
    color: var(--primary-green-dark);
    text-decoration: underline;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.next-steps-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 1rem;
}

.steps-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.steps-list li:last-child {
    margin-bottom: 0;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

.steps-list li strong {
    display: block;
    color: var(--gray-900);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.steps-list li p {
    color: var(--gray-600);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

/* ===== PROMO COLUMN STYLES ===== */
.promo-header {
    margin-bottom: 3rem;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.promo-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
}

.promo-features {
    margin-bottom: 3rem;
}

.promo-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.25rem;
}

.feature-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 0;
}

.promo-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--white);
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    position: relative;
}

.testimonial i.fa-quote-left {
    font-size: 1.5rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.875rem;
}

/* ===== REGISTRATION SPECIFIC STYLES ===== */
.pricing-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-label {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
}

.pricing-desc {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .auth-container {
        padding: 1rem;
    }
    
    .auth-wrapper {
        flex-direction: column;
        max-width: 100%;
        min-height: auto;
        border-radius: 16px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .auth-form-column,
    .auth-promo-column {
        flex: none;
        padding: 1rem;
    }
    
    .auth-form-column {
        text-align: center;
    }
    
    .auth-logo {
        text-align: center !important;
        margin-bottom: 2rem;
    }
    
    .auth-logo img {
        margin: 0 auto 1rem;
        display: block;
    }
    
    .auth-title {
        text-align: center;
        font-size: 1.75rem;
    }
    
    .auth-subtitle {
        text-align: center;
    }
    
    .user-email {
        text-align: center;
    }
    
    .auth-form-container {
        max-width: 100%;
        text-align: left;
    }
    
    .next-steps-card {
        padding: 1rem;
    }
    
    .steps-list li {
        padding-left: 2rem;
    }
    
    .steps-list li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.7rem;
    }
    
    .auth-promo-column {
        order: -1;
        min-height: auto;
        border-radius: 16px 16px 0 0;
    }
    
    .promo-title {
        font-size: 2rem;
    }
    
    .promo-features {
        display: none;
    }
    
    .promo-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    /* Email verified page mobile styles */
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .success-card,
    .features-card,
    .help-card {
        padding: 1rem;
    }
    
    .features-list li {
        padding: 0.25rem 0;
    }
    
    .help-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
