.email-signup {
  max-width: 420px;
}

.email-signup .signup-heading {
  margin-top: 0;
}

.email-signup .form-item {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.email-signup label {
  font-weight: 600;
  font-size: 0.9rem;
}

.email-signup input[type="text"],
.email-signup input[type="email"] {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Hide the honeypot visually but keep it in the DOM */
.email-signup .signup-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.email-signup .signup-messages {
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.email-signup .signup-messages.is-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.email-signup .signup-messages.is-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Spinner (CSS-only) */
.email-signup .signup-btn-spinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: eo-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-left: 0.4em;
}

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