How to Adjust the Recaptcha Badge for Mobile Screens

Solves the issue that causes the footer to be obscured by the Recaptcha badge.

Adjusts transparency of the badge when the viewport is below a certain width, i.e. on a mobile device.

@media (max-width: 400px) {
.grecaptcha-badge{
opacity:50%;
}
}