/*
 * HONEYPOT SPAM PROTECTION
 * This CSS file ensures the honeypot field is invisible to humans 
 * but remains visible and accessible to automated bots.
 */

.honeypot-field {
    /* Absolute positioning hides it visually but keeps it in the DOM flow for bots */
    position: absolute ;
    left: -9999px ;
    top: auto ;
    width: 1px ;
    height: 1px ;
    overflow: hidden ;
    padding: 0 ;
    border: 0 ;
    clip: rect(0, 0, 0, 0) ;
    white-space: nowrap ;
}

/* Ensure any elements inside the honeypot div are also visually hidden */
.honeypot-field label,
.honeypot-field input {
    display: none ;
    visibility: hidden ;
}