/* Basic layout for the double opt-in form. Safe to override/replace with a
   site's own styles — these are just enough to make the form usable and to
   hide the honeypot field, which otherwise shows up as a blank, unlabeled
   box (it has no placeholder on purpose, since real visitors should never
   notice it). */

#optin-form-section {
  max-width: 480px;
  margin: 0 auto;
  font-family: sans-serif;
}

.optin-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.optin-form input,
.optin-form textarea {
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.optin-form .btn {
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  background: #2c6eab;
  color: #fff;
  cursor: pointer;
  align-self: flex-start;
}

.optin-form .btn:hover {
  background: #23557f;
}

.note-text {
  margin-bottom: 1rem;
}

/* Honeypot: hidden from real visitors, left reachable by bots that fill in
   every field regardless of visibility to a screen. */
.optin-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.optin-captcha-img {
  display: block;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0.4rem 0;
}
