/* ==========================================================================
   FOOD HOUSE — CMS additions
   The only stylesheet added on top of the approved design. It exists purely
   to style the server-side validation states that the static demo forms had
   no need for. Nothing here changes any existing rule.
   ========================================================================== */

/* Server-rendered field errors: match the client-side .was-validated look. */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: var(--fh-chili);
  background-image: none;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  border-color: var(--fh-chili);
  box-shadow: 0 0 0 4px rgba(192, 57, 43, .12);
}

.is-invalid ~ .invalid-feedback {
  display: block;
}
