I'm create a web form, that has one custom input field with type "text".
CSS looks like
input {
height: 39px;
font-size: 14px;
color: #fff;
background: #000000 url(../img/search-bg-white.png) no-repeat 95% center;
border: none;
padding: 0 50px 0 10px;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
When I tap on it at iPhone 6 all elements are desapiare exluding form elements without this input
And the result is http://gyazo.com/790da935bbfc946420cd37a24b2302db and I don't understand what to do