.ik-lead-form .ik-lead-submit-status {
  align-items: center;
  color: #5a6b66;
  display: none;
  font-size: 13px;
  gap: 9px;
  line-height: 18px;
  margin: -4px 0 0;
}

.ik-lead-form[data-ik-submitting="1"] .ik-lead-submit-status {
  display: flex;
}

.ik-lead-form[data-ik-submitting="1"] button[type="submit"] {
  -webkit-text-fill-color: #fff;
  background: #c2331b !important;
  color: #fff !important;
  cursor: wait !important;
  opacity: 0.9;
}

.ik-lead-submit-spinner {
  animation: ik-lead-spin 0.75s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  border-top-color: #fff;
  box-sizing: border-box;
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.ik-lead-submit-status__dot {
  animation: ik-lead-pulse 1.2s ease-in-out infinite;
  background: #c2331b;
  border-radius: 50%;
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
}

@keyframes ik-lead-spin {
  to { transform: rotate(360deg); }
}

@keyframes ik-lead-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .ik-lead-submit-spinner,
  .ik-lead-submit-status__dot {
    animation: none;
  }
}
