/**
 * CSS for Bizetools Form Guard
 * Hides honeypot elements from human eyes and assistive technologies safely,
 * without using obvious indicators like display:none that advanced spam bots check for.
 */
.btfg-trap-container {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    user-select: none !important;
    z-index: -9999 !important;
}

.btfg-trap-container input {
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    user-select: none !important;
}
