.form-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.form-actions button[type="submit"] {
  background: var(--teal-dark);
}

.form-status {
  text-align: center;
  border-radius: 8px;
  margin: 0;
  padding: 14px 18px;
  font: 800 0.78rem Montserrat;
}

.form-status.success {
  color: #047987;
  background: #e8f8fa;
}

.form-status.error {
  color: #8f2f1b;
  background: #fff0df;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(7, 31, 36, 0.48);
}

.success-modal {
  width: min(440px, 100%);
  text-align: center;
  border-radius: 8px;
  background: #fff;
  padding: 34px 30px 30px;
  box-shadow: 0 24px 70px rgba(7, 31, 36, 0.28);
}

.success-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
}

.success-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-modal h3 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 2.7rem);
}

.success-modal p {
  color: var(--muted);
  margin: 12px 0 24px;
}

.success-modal button {
  background: var(--teal-dark);
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font: 800 0.72rem Montserrat;
  box-shadow: 0 10px 22px #0aa7b838;
}
