/**
 * Honeypot Frontend Stylesheet
 * 
 * Hides the invisible bot honeypot input field semantically,
 * preventing layout shifts, respecting screen readers, and avoiding inline styles.
 * 
 * @package HMVIP\Security
 * @since 1.1.0
 */

.hmvip-honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
