/* ══════════════════════════════════════════════════════════════════
   Perweb Solutions — Quote / Enquiry Form AJAX Status Styles
   Shared across every page that uses the handleSubmit(this) forms
   (sidebar Quick-Quote widget, homepage forms, Easy School Website
   franchise & product forms). Colours match the site's existing
   crimson / gold / navy theme.
   ══════════════════════════════════════════════════════════════════ */

.cf-form-msg {
  display: none;
  margin-top: 14px;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
  align-items: center;
  gap: 8px;
}

.cf-form-msg.success {
  display: flex;
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .35);
  color: #4ade80;
}

.cf-form-msg.error {
  display: flex;
  background: rgba(200, 16, 46, .12);
  border: 1px solid rgba(200, 16, 46, .4);
  color: #ff8095;
}

.submit-btn:disabled,
.fr-submit:disabled,
.big-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
