Disable Rounded Borders in iOS Search Field
If you use a search field in Mobile Safari, you may discover rounded borders when focusing the search field. If you want to disable this, the following snippet may help you:
input[type="search"] {
-webkit-border-radius: 0;
-webkit-appearance: none !important;
}