/**
 * WBD newsletter form — state styling only.
 * Owned by the sandbox plugin wp-content/novamira-sandbox/wbd-newsletter.php.
 *
 * Layout/colour come from the theme's Tailwind classes (Play CDN) so the form
 * matches the band it sits in. Only what JS toggles at runtime lives here, so
 * it never depends on the CDN having seen a class.
 */

.wbd-nlform { margin: 0; }

/* Honeypot — off-screen, never display:none (bots skip hidden fields). */
.wbd-nlform__hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.wbd-nlform__msg {
  display: none;
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}
.wbd-nlform__msg.is-visible { display: block; }
.wbd-nlform__msg.is-ok { color: #19E6A0; }
.wbd-nlform__msg.is-ok::before { content: "✓ "; font-weight: 700; }
.wbd-nlform__msg.is-error { color: #fca5a5; }

.wbd-nlform.is-busy button[type="submit"] { opacity: .65; cursor: default; }
.wbd-nlform button[disabled] { cursor: default; }
