/* Form processing overlay */
.form-process-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 42, 66, 0.58);
  backdrop-filter: blur(8px);
}

.form-process-overlay.is-visible {
  display: flex;
}

.form-process-box {
  width: min(100%, 380px);
  border-radius: 24px;
  background: #ffffff;
  padding: 32px 28px;
  text-align: center;
  color: #0a2235;
  box-shadow: 0 24px 70px rgba(0, 42, 66, 0.28);
}

.form-process-box strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
  color: #013a5c;
}

.form-process-box p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(10, 34, 53, 0.68);
}

.form-process-spinner {
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 5px solid rgba(1, 58, 92, 0.14);
  border-top-color: #dc143c;
  animation: apkrichSpin 0.8s linear infinite;
}

@keyframes apkrichSpin {
  to {
    transform: rotate(360deg);
  }
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}
