<input> with double-white bottom border
HTML
<input type="text" id="inputName" name="name">
CSS
body {
background: #000080;
}
input {
background: #f99;
border: 3px double red;
border-radius: 4px;
}
<input type="text" id="inputName" name="name">
body {
background: #000080;
}
input {
background: #f99;
border: 3px double red;
border-radius: 4px;
}