You can globally disable scaling using the view meta tag. I am not familiar with how the browser scales when you click on the form object, so I am not 100% sure that this will be a valid workflow for your situation (but thereโs still something to try ...):
<meta name = "viewport" content = "height = device-height, width = device-width, initial-scale = 1.0, maximum-scale = 1.0">
NOTE. To turn off scaling, the important part is: "initial-scale = 1.0, maximum-scale = 1.0". Setting these values โโwill be disabled.
source share