.contact-submit {
  position: relative;
}

.contact-submit.is-loading,
.contact-submit.is-success {
  pointer-events: none;
}

.contact-submit.is-loading::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-top-color: #ffffff;
  animation: contactSpinner 0.8s linear infinite;
}

.contact-submit.is-success {
  background: #111111;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.16);
}

.contact-status {
  min-height: 22px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: rgba(17, 17, 17, 0.52);
}

.contact-status.is-success {
  color: #166534;
}

.contact-status.is-error {
  color: #b91c1c;
}

@keyframes contactSpinner {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
