Input Field Like Bootstrap
http://stackoverflow.com/questions/35953242/only-input-boxes-of-bootstrap
HTML
<input type="text" name="text" class="bootstrap">
CSS
.bootstrap{
width:250px;
height:2em;
border-radius: 5px;
background: #fff;
border: 1px solid #ccc;
outline:none;
padding: 6px;
}
.bootstrap:focus{
border:1px solid #56b4ef;
box-shadow: 5px 5px 5px #c8def0;
}