/* FormSanity — inline field hints (email sanity, etc.) */
.field-sanity-hint {
    display: none;
    font-size: .78rem;
    line-height: 1.35;
    margin-top: .35rem;
}
.field-sanity-hint.is-error { display: block; color: #d64550; }
.field-sanity-hint.is-ok    { display: block; color: #2e9e5b; }

.field-sanity-suggest {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    font-weight: 700;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}
.field-sanity-suggest:hover { opacity: .8; }

input.sanity-invalid,
.sanity-invalid {
    border-color: #d64550 !important;
    box-shadow: 0 0 0 .15rem rgba(214, 69, 80, .15) !important;
}
