iOS devices add a lot of annoying styles on form inputs, particularly on input[type=submit]. Shown below are the same simple search form on a desktop browser, and on an iPad.
Desktop:

iPad:

The input[type=text] uses a CSS box shadow inset and I even specified -webkit-border-radius:none; which apparently gets overridden. The color and shape of my input[type=submit] button gets completely bastardized on the iPad. Does anyone know what I can do to fix this? Thanks in advance.
-webkit-border-radius:none;did you specifyborder-radius:none;? - Rigel Glen-webkit-appearance:noneand-webkit-border-radius:0did the trick on iOS for me! - Primus202