I have been working on implementing Google reCAPTCHA v1 into an ASPX project using a DLL for that purpose. I have also set up a control validator for all fields in my form.
While my website is responsive, I am having trouble adjusting the width of the Google reCAPTCHA to make it responsive as well.
This is how I have implemented my captcha:
<div>
<captcha:RecaptchaControl Theme="white"
ID="RecaptchaControl1" runat="server"
PublicKey="mypublicKey"
PrivateKey="myprivatekey" />
</div>
However, when in responsive mode, despite my device's width being 300px, the captcha displays with a width of 318px. Upon inspecting the element, I found this:
#recaptcha_area, #recaptcha_table {
width: 318px !important;
}
It appears that this is the default styling from Google Captcha and not customized by me ("inline-1").
Does anyone know how to resolve this issue?
Thank you