/* form-feedback.css */

#formOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 99999;
  display: none;
}

#formOverlay .overlay-inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
}

#formOverlay .spinner{
  width: 64px;
  height: 64px;
  border: 6px solid rgba(255,255,255,.35);
  border-top-color: rgba(255,255,255,1);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin{
  to { transform: rotate(360deg); }
}

#formOverlay .toast{
  max-width: 520px;
  width: min(520px, 92vw);
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px;
  text-align: center;
}

#formOverlay .toast h3{
  margin: 0 0 8px 0;
  font-size: 18px;
}

#formOverlay .toast p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
