@charset "UTF-8";

.form_wrap {
    background-color: #FAF5E4;
    max-width: none;
    padding: 50px 0 80px;
}

.form_tab {
    width: 100%;
}

.form_tab th {
    padding: 10px 20px;
    text-align: left;
    width: 25%;
}

input[type="date"] {
    width: 30%;
}

.form_button {
    text-align: center;
    padding-top: 30px;
}

input[type="submit"] {
    border-radius: 10px;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    color: #fff;
    background: #2CA200;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: bold;
    transition: opacity 0.3s;
    text-decoration: none;
    max-width: 420px;
    width: 100%;
}
input[type="submit"]:hover{
    opacity: 0.7;
    transition: all 0.3s;
}

@media screen and (max-width:1030px) {}

@media screen and (max-width:640px) {

    .form_tab th,
    .form_tab td {
        display: block;
    }

    .form_tab th {
        width: 100%;
        padding: 20px 0 5px;
    }

    input[type="date"] {
        width: 100%;
    }

}

@media screen and (max-width:320px) {}

@media print {}