.static-form-note {
  position: relative;
  z-index: 4;
  display: flex;
  width: 420px;
  min-height: 48px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #212121;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 104, 209, 0.16);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 70, 140, 0.08);
  margin: 16px 0 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
}

.static-form-note[data-state="loading"]::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 2px solid rgba(0, 104, 209, 0.22);
  border-top-color: #0068d1;
  border-radius: 50%;
  animation: contact-form-spin 0.8s linear infinite;
}

.static-form-note[data-state="error"] {
  color: #8b1a1a;
  background: #fff8f8;
  border-color: rgba(139, 26, 26, 0.2);
}

.static-form-note a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

@keyframes contact-form-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .static-form-note[data-state="loading"]::before {
    animation: none;
  }
}

@media (max-width: 960px) {
  .static-form-note {
    width: 100%;
    min-height: 44px;
    margin-top: 14px;
    padding: 10px 14px;
  }
}
