/* Anti-Bot Honeypot CSS - Add this to your CSS file */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* HTML to add to each form (before closing </form> tag):

<!-- Anti-bot honeypot fields - DO NOT REMOVE -->
<input type="text" name="website" class="honeypot" tabindex="-1" autocomplete="off">
<input type="text" name="url" class="honeypot" tabindex="-1" autocomplete="off">
<input type="text" name="homepage" class="honeypot" tabindex="-1" autocomplete="off">

*/