/* Onboarding Profile Setup - Validation Styling */

/* Profile input error state */
#profile-first-name.error,
#profile-dob.error,
#profile-current-income.error,
#profile-last-year-income.error,
#profile-dependents.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

/* Profile input focus effects */
#profile-first-name:focus,
#profile-dob:focus,
#profile-current-income:focus,
#profile-last-year-income:focus,
#profile-dependents:focus {
    border-color: var(--brand-purple) !important;
    box-shadow: 0 0 0 3px rgba(180, 100, 255, 0.15) !important;
    outline: none;
}

/* Error message styling */
.auth-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 18px;
}

/* Mobile Warning Banner - Show only on tablets and phones */
.mobile-warning-banner {
    display: none !important;
}

/* Show warning on screens smaller than 1024px (tablets and phones) */
@media (max-width: 1023px) {
    .mobile-warning-banner {
        display: block !important;
    }
}

