/* Custom CSS to hide the honeypot field */
.honeypot-field-wrapper {
    display: none !important; /* Forces the element to be completely hidden */
    visibility: hidden !important; /* Ensures it's not just transparent */
    height: 0 !important; /* Zero height */
    width: 0 !important; /* Zero width */
    overflow: hidden !important; /* Hide any potential content if somehow rendered */
    position: absolute !important; /* Take it out of normal document flow */
    left: -9999px !important; /* Move it far off-screen */
}