/* Shared form validation feedback (portal, admin, teacher) */
.hv-invalid {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.12);
}

.hv-error-msg {
  color: #c0392b;
  font-size: 12px;
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.35;
}

/* Required-field indicator (red asterisk) — applied consistently to every
   required field's label by HuagenValidate.markRequiredFields(). */
.hv-req {
  color: #c0392b;
  font-weight: 700;
  margin-left: 2px;
}

.form-group .hv-error-msg + .hint,
.form-group .hint + .hv-error-msg {
  margin-top: 6px;
}

input.hv-invalid:focus,
select.hv-invalid:focus,
textarea.hv-invalid:focus {
  outline: none;
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.18);
}
