<input> with double-white bottom border

by Nataliia Vernyhora

HTML

<input type="text" id="inputName" name="name">

CSS

body {
    background: #000080;
}
input {
    background: #f99;

    border: 3px double red;
    border-radius: 4px;
}