/* Off-screen utility used by the honeypot field. Kept in an external stylesheet
   (not inline on the element) so a bot parsing only the HTML has no cheap signal
   that the field is hidden. Off-screen positioning is used instead of
   display:none because some bots specifically skip display:none fields. */
.field-note {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}
