.form-status:focus { outline: 0; }
.form-status.loading { color: #4f5d65; }
.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #9b1c1c;
  box-shadow: 0 0 0 4px rgba(155, 28, 28, 0.12);
}
.form-protection,
.form-noscript {
  margin: 1rem 0 0;
  color: #66737b;
  font-size: 0.78rem;
  line-height: 1.55;
}
.form-protection a { font-weight: 750; }
.form-noscript {
  padding: 0.8rem 0.9rem;
  background: #fff6da;
  border: 1px solid #e4c96f;
  border-radius: 7px;
  color: #5f4b00;
}
[data-submit-button][disabled] {
  cursor: wait;
  opacity: 0.78;
  transform: none;
  box-shadow: none;
}
[data-submit-button][aria-busy="true"]::after {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
  border-radius: 50%;
  content: "";
  animation: contact-form-spinner 0.8s linear infinite;
}
@keyframes contact-form-spinner {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  [data-submit-button][aria-busy="true"]::after { animation-duration: 1.5s; }
}
