input {
    font-family: 'Roboto', Arial, sans-serif !important;
    font-size: 14px !important;
}

input[type='text'],
input[type='password'],
input[type="number"],
input[type="date"],
select{
    height: 40px;
    padding: 0px 16px;
    color: #333;
    border: 1px solid #B6B6B6;
    box-sizing: border-box;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: none;

    transition: background .1s linear, box-shadow .1s linear;
}

input[type='text']:hover,
input[type='password']:hover,
input[type="number"]:hover,
input[type="date"]:hover{
    background:#fafafa;
}

input[type='text']:focus,
input[type='password']:focus,
input[type="number"]:focus,
input[type="date"]:focus{
    background:#fff;
    border: 0;
    outline: 0;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
}

input[type='radio'] {
    transform: scale(1.25);
    margin: 5px;
}

label {
    vertical-align: text-top;
}