
/* ===== Auth Pages Styles ===== */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.auth-card {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    animation: fadeInUp 0.6s ease;
}

.auth-header {
    background: linear-gradient(135deg, var(--primary), var(--success));
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.auth-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.auth-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.auth-body {
    padding: 3rem 2rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(6, 182, 212, 0.15);
}

.divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    color: #64748b;
}



/* ===== Help Page Styles ===== */
.help-hero {
    background: linear-gradient(135deg, var(--primary), var(--success));
    color: white;
    padding: 5rem 0 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.help-hero .bi-question-circle {
    font-size: 4rem;
    opacity: 0.9;
}

.help-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.help-faq {
    background: linear-gradient(45deg, #00968882, #cddc3959);
}
.search-box {
    max-width: 600px;
    margin: 2rem auto 0;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--success));
    color: white;
    padding: 0 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.faq-section {
    margin-bottom: 4rem;
}




/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
    
    .help-hero h1 {
        font-size: 2rem;
    }
    
    .account-type-selector {
        grid-template-columns: 1fr;
    }
}