/* The note under an email field while the mailbox is being checked, and after.
   Only a settled answer is shown: verified, or does not exist. A check that
   reaches no verdict removes the note instead of explaining itself - nothing is
   blocked, so there is nothing to act on. The submit button, held while the
   check runs, is what shows that it is still going. */
.rg-verify-hint {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  font-family: "Manrope", sans-serif;
  color: #666;
}

.rg-verify-hint::before {
  margin-right: 5px;
  font-weight: 700;
}

/* In progress. Neutral on purpose - it is a progress note, not a verdict. */
.rg-verify-hint--checking { color: #666; }
.rg-verify-hint--checking::before { content: "\21BB"; display: inline-block; }

/* Mailbox exists and no form rule has rejected the address. */
.rg-verify-hint--ok { color: #0f7b3f; }
.rg-verify-hint--ok::before { content: "\2713"; }

/* Backstop for a field whose form paints no error of its own. */
.rg-verify-hint--bad { color: #d32f2f; }
.rg-verify-hint--bad::before { content: "\2715"; }

/* Submit is held while a check is outstanding. The custom button classes carry
   their own colours, so a plain [disabled] would otherwise still look active.
   Only buttons rg-email-verify.js disabled itself carry the marker. */
form.rg-verify-waiting button[data-rg-verify-gated],
form.rg-verify-waiting input[data-rg-verify-gated] {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

/* The subscribe block sits on a dark panel, where the colours above go dim.
   Its note shares the foot row with the form's own message. */
.soho-subscribe .rg-verify-hint {
  margin-top: 0;
  font-size: 13px;
  color: #e6e6e6;
}
.soho-subscribe .rg-verify-hint--ok { color: #9be7b6; }
.soho-subscribe .rg-verify-hint--bad { color: #ffb4ae; }
