/* The note under an email field while the mailbox is being checked, and after.
   Every lookup ends in one of these states or in the form's own error - the
   note is never just removed, which read as a check that had hung. */
.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"; }

/* Lookup unavailable. Submission is not blocked, so this stays quiet. */
.rg-verify-hint--warn { color: #8a6d00; }
.rg-verify-hint--warn::before { content: "\0021"; }

/* Endpoint chose not to check: signed-in admin, or an internal test address. */
.rg-verify-hint--skipped { color: #666; }
.rg-verify-hint--skipped::before { content: "\2013"; }

/* 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; }
.soho-subscribe .rg-verify-hint--warn { color: #f2dd93; }
.soho-subscribe .rg-verify-hint--skipped { color: #cfcfcf; }
