/* reCAPTCHA v3 Styling */

/* reCAPTCHA v3 badge positioning (bottom right) */
.grecaptcha-badge {
    z-index: 1000 !important;
}

/* Optional: Hide the badge if you add the text to your footer */
/* 
.grecaptcha-badge { 
    visibility: hidden !important;
}
*/

/* If you hide the badge, you MUST add this text to your footer: */
/* 
This site is protected by reCAPTCHA and the Google
<a href="https://policies.google.com/privacy">Privacy Policy</a> and
<a href="https://policies.google.com/terms">Terms of Service</a> apply.
*/

/* Loading indicator for form submission */
form[data-recaptcha-loading] button[type="submit"] {
    opacity: 0.6;
    cursor: wait;
}

form[data-recaptcha-loading] button[type="submit"]::after {
    content: ' ...';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: ' .'; }
    40% { content: ' ..'; }
    60%, 100% { content: ' ...'; }
}
