ReCaptcha missing styling on every Apple Devices

Hi every I hope your doing well, I’m having an issue with my re-captcha and some how the missing styling it happens on every Apple Devices while THE desktop and android devices are working fine. I’d like to know your all thought on this issue. Thank you.

enter image description here

I use the basic usage of react-google-recaptcha:

import ReCAPTCHA from "react-google-recaptcha";

function onChange(value) {
  console.log("Captcha value:", value);
}

ReactDOM.render(
  <ReCAPTCHA
    sitekey="Your client site key"
    onChange={onChange}
  />,
  document.body
);