/*
 * Captcha Registration — subscribe form protection styles.
 * Minimal styles needed when the Turnstile widget and honeypot are
 * injected into the simple-messaging subscribe form.
 */

/* -- Turnstile widget wrapper ---------------------------------------------- */

.captcha-reg-widget-wrap {
    margin: 16px 0;
    display: flex;
    justify-content: center;
}

.captcha-reg-widget-wrap .cf-turnstile iframe {
    max-width: 100%;
}

/* -- Honeypot field --------------------------------------------------------- */

/*
 * Moved off-screen rather than display:none — sophisticated bots detect
 * those and intentionally skip the field. Real users never see this.
 */
.captcha-reg-hp-wrap {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}
