/* Forgot Password Styles - only page-specific styles */

.forgot-password-container {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Page-specific adjustments */
.forgot-password-info {
    margin-bottom: 1.5rem;
}

.reset-button-container {
    margin-top: 2rem;
    text-align: center;
}

/* Any mobile-specific styles that aren't covered by ui-shared.css */
@media (max-width: 576px) {
    .forgot-password-container {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .forgot-password-info {
        margin-bottom: 1rem;
    }
}

/**
 * Forgot Password Page - specific styles
 * Extending ui-shared.css and validation-shared.css
 */

/* Standard error message styling for this page */
#forgotPasswordForm .text-danger {
    font-size: 0.95rem;
    display: block;
    margin-top: 0.25rem;
    color: #dc3545;
}

/* Mobile-specific adjustments */
@media (max-width: 576px) {
    #forgotPasswordForm .text-danger {
        font-size: 1rem;
        margin-top: 0.35rem;
    }
    
    /* Match other pages' text size */
    #forgotPasswordForm .form-label {
        font-size: 1.5rem;
        font-weight: 500;
    }
    
    /* Match other pages' input size */
    #forgotPasswordForm .form-control {
        font-size: 1.4rem;
    }
}