.archive-form {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:space-between;
    -ms-flex-pack:space-between;
    justify-content:space-between;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}
.form-row {
    width: 23%;
}
.form-label {
    float: none;
    text-align: left;
    margin-right: 0;
    max-width: 100%;
}
.form select, .form input[type="text"] {
    max-width: 100%;
    height: 35px;
}
.form select {
    width: 100%;
    margin-bottom: 0;
    height: 35px;
}
.form-field {
    float: none;
}
.form button {
    width: 100%;
    height: 35px;
}
table.data {
    border:solid 1px #000;
    margin:0 auto 20px;
}
table.data th {
    background-color: #06f;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
table.data td {
    text-align: center;
}
table.data th:first-child, table.data td:first-child {
    text-align: left;
}
@media screen and (max-width: 768px) {
    .form-row {
        width: 48%;
    }
}
@media screen and (max-width: 640px) {
    .form-row {
        width: 98%;
    }
    .form button {
        margin-top: 15px;
    }
}