#form {
    text-transform: none;
}
#form .container {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
    margin: 0 auto 10px;
    padding: 0 12px;
    width: 100%;
}
#form .container > .item_name {
    font-weight: bold;
    text-align: left;
    width: 30%;
}
#form .container > .item_detail {
    padding-left: 3%;
    text-align: left;
    width: 70%;
}
#form .container > .item_detail input,
#form .container > .item_detail textarea {
    box-sizing: border-box;
    padding: 10px;
    width:  100%;
}
#form .container > .item_detail textarea {
    height: 250px;
}
#form .check_wrap {
    justify-content: center;
    margin: 30px auto;
}
#form .check_wrap input {
    height: 20px;
    margin-right: 5px;
    width: 20px;
}
#form .check_wrap input label {
    font-size: 2rem;
    white-space: nowrap;
}
#form .submit {
    text-align: center;
}
#form .submit .link_btn {
    display: flex;
    justify-content: center;
}
#form .submit .link_btn > a {
    background-color: #00693e;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    min-width: 300px;
    padding: 10px;
    text-align: center;
}
.confirm_wrap #form .submit .link_btn {
    margin: 30px auto;
}
.confirm_wrap #form .submit .link_btn > .btn {
    margin: 0 2%;
    min-width: 0;
    width: 42%;
}