/* validation.css */
.form-error {
    color: #d93025;
    /* red */
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.input-error {
    border-color: #d93025 !important;
    box-shadow: 0 0 0 0.125rem rgba(217, 48, 37, 0.08);
}

.validate-form .form-text.error-ghost {
    /* avoid hiding other helper texts — keep them if not error */
    display: none;
}