body {
    background-color: #f8f9fa;
    font-family: 'Roboto';
    font-size: 1rem;
}

select, textarea, input[type=text], input[type=email], input[type=password] {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    line-height: 1.5;
    vertical-align: middle;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    select:hover, textarea:hover, input[type=text]:hover, input[type=email]:hover, input[type=password]:hover {
        border: 1px solid #191970;
    }

input[type=file] {
    display: inline-block;
    width: auto;
}

input[type=checkbox], input[type=radio] {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    vertical-align: middle;
}

    input[type=checkbox] + label, input[type=radio] + label {
        margin: 0 0.625rem;
    }

button, input[type=button], input[type=submit] {
    display: inline-block;
    width: 120px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    color: #191970;
    border: 1px solid #191970;
    border-radius: 0.25rem;
    padding: 0.25rem 0.625rem;
    line-height: 1.5;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    button:hover, input[type=button]:hover, input[type=submit]:hover {
        background-color: #191970;
        color: white;
    }

a {
    color: #191970;
}

    a:hover {
        color: #6464dc;
        text-decoration: none;
    }