/**
 * Anti-Spam Honeypot Styles
 *
 * Hides honeypot fields from humans using layered techniques.
 * Multiple hiding methods are combined because sophisticated bots
 * detect simple `display: none` or `visibility: hidden`.
 *
 * @package Hello_Biz
 */

.blossem-hp-field {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* Keep the honeypot inputs themselves unreachable even if a bot
   tries to force the wrapper visible. */
.blossem-hp-field input,
.blossem-hp-field label {
	pointer-events: none !important;
	tab-size: 0 !important;
}
