/* Honeypot field - hidden from real users, visible to bots */
.form-field-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Alternative method - keeps field in DOM but invisible */
.form-field-hp input {
    position: absolute;
    left: -9999px;
    top: 0;
}
