.honeypot {
    position: absolute;
    left: -9999px;
}

* {
    box-sizing: border-box;
}


input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;

}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align:center ;
    max-width: 60%;
    min-width: 340px;
}

input[type=date] {
    max-width: 50%;
}


input[type=time] {
    max-width: 50%;
}
.dateContainer, .numContainer {
    display: flex
}
.numContainer {
    padding-bottom:2em;
}


input[type=submit]:hover {
    background-color: #45a049;
}

.field {
    max-width: 60%;
    min-width:340px;
}

.field small {
    font-size: 0.75em;
}

.error {
    color: red;
    font-weight: bold;
    font-size: 0.8em;
}