/**
 * Auth Pages CSS
 * This file contains styles for login and register pages
 */

/* Hero section styling */
.hero-section {
    padding: 80px 0 !important;
    min-height: auto !important;
    max-height: none !important;
    background-image: none !important;
    background-color: var(--primary-color, #0071bc) !important;
}

.hero-section::before {
    display: none !important;
}

/* Hero section text */
.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6,
.hero-section p,
.hero-section div {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

.hero-section h1 {
    font-size: 2.8rem !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
}

.hero-section p {
    font-size: 1.1rem !important;
    margin-bottom: 20px !important;
}

/* Form styling */
.auth-form .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.auth-form .form-control {
    padding: 12px;
    height: auto;
}

.auth-form .btn {
    padding: 12px;
}

/* Specific styles for login and register pages */
.login-page .hero-section,
.register-page .hero-section {
    background-color: var(--primary-color, #0071bc) !important;
}

.login-page .hero-section h1,
.login-page .hero-section p,
.register-page .hero-section h1,
.register-page .hero-section p {
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 !important;
    }

    .hero-section h1 {
        font-size: 2.2rem !important;
    }

    .hero-section p {
        font-size: 1rem !important;
    }
}
