.reset-password-section {
    min-height: 100vh;
    background-color: #f8f9fa;
}

.auth-cover-modern {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-right: 1px solid #e5e7eb;
}

.auth-cover-content {
    max-width: 500px;
    width: 100%;
}

.logo-container {
    display: inline-block;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.auth-logo {
    max-height: 100px;
    width: auto;
}

.auth-logo-mobile {
    max-height: 80px;
    width: auto;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.auth-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #4b5563;
}

.auth-help-text {
    font-size: 0.9rem;
    color: #6b7280;
}

.auth-help-text a {
    color: #4299e1;
    text-decoration: underline;
    font-weight: 600;
}

.auth-help-text a:hover {
    color: #3b82f6;
}

.auth-illustration {
    margin-top: 3rem;
    opacity: 0.9;
}

.auth-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.auth-form-wrapper {
    max-width: 500px;
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.auth-form-header {
    margin-bottom: 2rem;
    background-image: url('../images/auth/clouds.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 1.5rem;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: -2.5rem;
    border-radius: 12px 12px 0 0;
}

.auth-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.auth-form-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0;
}

.auth-form .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.auth-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.auth-form .form-control-lg {
    padding: 0.625rem 0.875rem;
}

.auth-form .btn-primary {
    background: linear-gradient(135deg, #00BFFF 0%, #0ea5e9 100%);
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 191, 255, 0.2);
}

.auth-form .btn-primary:hover {
    background: linear-gradient(135deg, #00a8e6 0%, #0284c7 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 191, 255, 0.3);
}

.auth-form .btn-primary:active {
    transform: translateY(0);
}

.auth-form-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.auth-form-footer .btn-link {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-form-footer .btn-link:hover {
    color: #3b82f6;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .auth-form-container {
        padding: 0;
        padding-top: 1rem;
        min-height: 100vh;
        align-items: flex-start;
    }

    .auth-form-wrapper {
        padding: 1.5rem;
        padding-top: 0;
        box-shadow: none;
        border-radius: 0;
        max-width: 100%;
        width: 100%;
    }

    .auth-form-header {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        margin-top: 0;
        padding: 1.5rem 1rem;
        border-radius: 0;
    }

    .auth-form-title {
        font-size: 1.5rem;
    }

    .auth-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 575px) {
    .auth-form-wrapper {
        padding: 1.25rem;
        padding-top: 0;
    }

    .auth-form-header {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding: 1.25rem 1rem;
    }

    .auth-form-title {
        font-size: 1.35rem;
    }

    .auth-form .btn-primary {
        padding: 0.75rem 1.25rem;
    }
}
