/* Wheels On Demand — form enhancement styles (contact form + the
   home/import/rent lead-capture forms). Additive only: the original
   style-main.css stays untouched. Colors reuse the existing on-brand
   status-pill palette from .schedule-table .status (green/red) so
   this matches the rest of the site exactly. */

.contact-form .hp-field,
.lead-form .hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form.is-submitting button[type="submit"],
.lead-form.is-submitting button[type="submit"] {
  opacity: .7;
  pointer-events: none;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--r-lg, 16px);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  background: #e9f5ee;
  color: #1f7a3e;
}

.form-status.error {
  background: #fbe6e8;
  color: #b41a2c;
}
