/**
 * reCAPTCHA v3 badge: align with accessibility FAB inset (right: 1rem) and keep the compact
 * icon-only strip. Without width/overflow overrides, Google often shows the full “geschützt durch reCAPTCHA” bar.
 *
 * @see https://developers.google.com/recaptcha/docs/faq (branding must remain visible; icon badge is sufficient.)
 */
.grecaptcha-badge {
    right: 1rem !important;
    left: auto !important;
    bottom: 1rem !important;
    z-index: 1040;
    width: 70px !important;
    max-width: 70px !important;
    overflow: hidden !important;
    transition: none !important;
}

.grecaptcha-badge:hover {
    width: 70px !important;
    max-width: 70px !important;
    overflow: hidden !important;
}
