/**
 * Luminos Captcha Shield — front-end. The only job here is to keep the honeypot
 * out of sight and out of the tab order. The inline style on the wrapper already
 * hides it before this file loads; this is belt-and-braces (and lets a theme
 * override cleanly if it ever needs to).
 */
.lcs-hp-wrap {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}
.lcs-hp-wrap input {
	pointer-events: none !important;
}
