@media screen and (max-width: 660px) {
    form h1 {
        font-size: 22px;
    }
}

input[type=text], input[type=date], input[type=password], textarea, select {
    font-size: 13px;
    padding: 10px;
    border: 1px solid #BEC3C7;
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 2.5%;
}

input[type=text], input[type=date], input[type=password], textarea {
    width: 95%;
}

select {
    min-width: 25%;
}

label {
    margin-left: 2.5%;
}

input[type=submit] {
    display: block;
    margin: auto;
    margin-top: 10px;
    min-width: 25%;
    padding: 10px;
    border-style: none;
    box-shadow: 0px 2px 3px 0px #C0C0C0;
    background-color: #2F3E4E;
    color: #EDF0F1;
    text-transform: uppercase;
    font-size: 15px;
    border-radius: 5px;
}

input[type=submit]:hover {
    background-color: #55AC68;
    cursor: pointer;
}

#result {
    text-align: center;
    margin-bottom: 0px;
    /* display: none; */
}