/**
 * Anti-Spam Honeypot — front.
 *
 * Hides the trap field from humans while leaving it in the DOM (and in the
 * accessibility tree with its "leave empty" label) so spam bots that ignore CSS
 * still see — and ideally fill — it. Off-screen rather than display:none, since
 * some bots skip display-hidden inputs.
 */
.be-hp-wrap {
	position: absolute !important;
	left: -9999px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}
