/**
 * reCAPTCHA v3 Badge Styles
 * 
 * @package BLH
 */

/* Adjust reCAPTCHA badge position to avoid overlapping with other elements */
.grecaptcha-badge {
    bottom: 100px !important;
    right: 20px !important;
    z-index: 999;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .grecaptcha-badge {
        bottom: 80px !important;
        right: 10px !important;
        transform: scale(0.9);
        transform-origin: bottom right;
    }
}

/* Privacy notice styles */
.recaptcha-notice {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.recaptcha-notice small {
    font-size: 12px;
    line-height: 1.4;
    color: #666;
}

.recaptcha-notice a {
    color: #003DA5;
    text-decoration: underline;
}

.recaptcha-notice a:hover {
    color: #13294B;
    text-decoration: none;
}

/* Hide badge if you want (must include privacy text in forms) */
/*
.grecaptcha-badge {
    visibility: hidden;
}
*/