/**
 * reCAPTCHA Enhancement Styles
 * Ensures proper display and positioning of Google reCAPTCHA v2 Invisible widget
 */

/* reCAPTCHA container styling */
#recaptcha-container {
    margin: 15px 0;
}

/* Ensure reCAPTCHA badge is visible and properly positioned */
.grecaptcha-badge {
    z-index: 1000 !important;
}

/* Loading indicator styling */
#recaptcha-loading {
    color: var(--bs-primary, #007bff);
    font-size: 14px;
}

/* Error message styling */
#recaptcha-error {
    color: #dc3545;
    font-size: 14px;
}

/* Mobile responsiveness for reCAPTCHA */
@media (max-width: 576px) {
    .grecaptcha-badge {
        bottom: 10px !important;
        right: 10px !important;
    }
}
