/* reCAPTCHA Badge Customization */

/* reCAPTCHA badge'i şeffaf yap, hover'da görünür yap */
.grecaptcha-badge {
    visibility: visible !important;
    opacity: 0.2 !important; /* Şeffaf */
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 40; /* Scroll butonunun altında */
}

/* Hover efekti - üzerine gelince tam görünür */
.grecaptcha-badge:hover {
    opacity: 1 !important; /* Hover'da tam görünür */
    transform: scale(1.05); /* Hafif büyüt */
}

/* Mobilde daha küçük göster */
@media (max-width: 768px) {
    .grecaptcha-badge {
        transform: scale(0.75);
        transform-origin: bottom right;
        opacity: 0.15 !important; /* Mobilde daha şeffaf */
    }
    
    .grecaptcha-badge:hover {
        transform: scale(0.85);
        opacity: 1 !important;
    }
}

