/* RungoCraft compact reCAPTCHA UI
   The real protection is still Google reCAPTCHA v3 token generation in JS
   and server-side verification in CaptchaService.php. This file only changes
   the visual badge shown near protected forms. */

.rc-captcha-mini {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: max-content;
    max-width: 100%;
    margin: 10px 0 14px;
    padding: 0;
    border: 0;
    background: transparent;
}

.rc-captcha-mini img {
    display: block;
    width: 118px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 69, 116, .10);
}

.rc-captcha-mini.is-verifying img {
    opacity: .72;
    filter: grayscale(.15);
}

.rc-captcha-mini.is-error img {
    outline: 2px solid rgba(217, 45, 32, .45);
    outline-offset: 2px;
}

.rc-captcha-error {
    display: block;
    margin: -4px 0 12px;
    color: #b42318;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 560px) {
    .rc-captcha-mini img {
        width: 104px;
    }
}
