arkadaşlar aşağıdaki kodu google recapthca kodu. sitede sağ tarafta whatsapp butonu kullanıyorum. recapthca görselini de sitenin sol tarafına ekleme ve çok küçük görünmesini istiyorum. bunu nasıl yapabilirim ? yerleştirme kodu aşağıda.
<script src="https://www.google.com/recaptcha/enterprise.js?render=sitekey"></script>
<!-- Your code -->
<script>
function onClick(e) {
e.preventDefault();
grecaptcha.enterprise.ready(async () => {
const token = await grecaptcha.enterprise.execute('güvenlik key', {action: 'LOGIN'});
});
}
</script>