.password{background-position: 5px -52px !important;}

.checkbox {
    width: 1em;
}

.submit {
    color: #000;
    border: solid 3px #d1738d;
    -moz-border-radius: 14px;
    -webkit-border-radius: 14px;
    border-radius: 14px;
    padding: 2px 10px;
    font-family: 'Alegreya Sans SC', sans-serif;
    font-size: 115%;
    font-weight: lighter;
    background-color: #fff;
    cursor: pointer;
}

form {
    margin-top: 5px;
    margin-bottom: 5px;
}

input[type="text"], input[type="password"], input[type="number"] { 
    background: #f9f9f9;
    padding: 15px 15px 15px 10px;
    margin: 0 0 10px 0;
    width: 340px; /* 353 + 2 + 45 = 400 */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
}
input:focus[type="text"], input:focus[type="password"], input:focus[type="number"] {
    background-color: #fff;
    border-color: #d68a95;
    outline: none;
    -moz-box-shadow: 0 0 0 1px #d68a95 inset;
    -webkit-box-shadow: 0 0 0 1px #d68a95 inset;
    box-shadow: 0 0 0 1px #d68a95 inset;
}
input[type="date"] { 
    background: #f9f9f9;
    padding: 15px 15px 15px 10px;
    margin: 0 0 10px 0;
    width: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
}

select { 
    background: #f9f9f9;
    padding: 14px 15px 14px 10px;
    margin: 0 0 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
}
select:focus {
    background-color: #fff;
    border-color: #d68a95;
    outline: none;
    -moz-box-shadow: 0 0 0 1px #d68a95 inset;
    -webkit-box-shadow: 0 0 0 1px #d68a95 inset;
    box-shadow: 0 0 0 1px #d68a95 inset;
}

textarea { 
    background: #f9f9f9;
    padding: 15px 15px 15px 30px;
    margin: 0 0 10px 0;
    width: 340px; /* 353 + 2 + 45 = 400 */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
}

textarea:focus {
    background-color: #fff;
    border-color: #d68a95;
    outline: none;
    -moz-box-shadow: 0 0 0 1px #d68a95 inset;
    -webkit-box-shadow: 0 0 0 1px #d68a95 inset;
    box-shadow: 0 0 0 1px #d68a95 inset;
}