/* Velcome Guard — masquage du honeypot.
   Positionnement hors écran (plutôt que display:none) : certains bots ignorent
   les champs en display:none mais remplissent les champs simplement décalés. */
.vg-hp {
	position: absolute !important;
	left: -9999px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}
.vg-hp input {
	display: none !important;
}
