/**
 * Password Validation Styles for PVB Login Registration Form
 */

.password-error-message {
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
    margin-top: 0.5rem;
    display: none;
    text-align: left;
}

.input-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.input-error:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .password-error-message {
        font-size: 13px;
        margin-top: 0.25rem;
    }
}
