/* Contact form honeypot + status */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.result:empty {
  display: none;
}

.form-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--automart-bdr-radius, 8px);
  font-size: 15px;
  line-height: 24px;
  animation: formAlertFadeIn 250ms ease-out;
}

.form-alert__icon {
  display: inline-flex;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--automart-white, #fff);
  font-weight: 700;
}

.form-alert--success {
  background: rgba(var(--automart-base-rgb, 200, 16, 46), 0.08);
  color: var(--automart-base-dark, #9E0C24);
  border: 1px solid rgba(var(--automart-base-rgb, 200, 16, 46), 0.35);
}

.form-alert--success .form-alert__icon {
  background: var(--automart-base, #C8102E);
}

.form-alert--error {
  background: rgba(198, 40, 40, 0.09);
  color: #c62828;
  border: 1px solid rgba(198, 40, 40, 0.28);
}

.form-alert--error .form-alert__icon {
  background: #c62828;
}

@keyframes formAlertFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .form-alert {
    animation: none;
  }
}

label.error {
  color: #c62828;
  font-size: 13px;
  margin-top: 6px;
  display: block;
}

.contact-one__btn-box .thm-btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
