/**
 * Hide the honeypot wrapper so human users never see or interact with it.
 * Multiple techniques ensure screen readers also skip it.
 */
.antispam-hp-wrap {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    z-index: -1 !important;
    pointer-events: none !important;
}
