/*
 * "I'm not a robot" — Views/Shared/_RecaptchaWidget.cshtml, on any page that has it.
 * Google draws the checkbox in a fixed 304 × 78 frame, wider than a form card on the narrowest
 * phones, so there it is scaled down and the space the scale frees is taken back.
 */

.nx-recaptcha {
    margin-top: 1.25rem;
}

.nx-recaptcha .g-recaptcha {
    min-height: 78px;
}

@media (max-width: 399.98px) {
    .nx-recaptcha .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
        margin-bottom: -12px;
    }
}
