I fixed it by modifying the code of this file \platform\plugins\captcha\resources\views\v2\script.blade.php
by updating this function.
 
    var onloadCallback = function() {
        // window.recaptchaInputs.forEach(function(item) {
        //     grecaptcha.render(item);
        // });
        window.recaptchaInputs.forEach(function(item) {
            var element = document.getElementById(item);
            if (element) {
                grecaptcha.render(item);
            } else {
                console.warn('reCAPTCHA placeholder element not found for ID:', item);
            }
        });
    };