/* form setting */

.disclaimer {
    color: #BF0B32;
    font-size: 10px;
    font-weight: bold;
}

.form {
    margin: 20px auto;
    background-color:#E1E2E3;
    border: 1px solid #aaa;
    border-radius: 5px;
    padding: 20px 20px;
}

label {
    font-size: 14px;
}

.radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border: 1px solid #aaa;
    border-radius: 50%;
}

.radio:hover input~.checkmark {
    background-color: #ccc;
}

.radio input:checked~.checkmark {
    background-color: #002768;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio input:checked~.checkmark:after {
    display: block;
}

.radio .checkmark:after {
    left: 5px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #eee;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #aaa;
    background-color: #eee;
}

.checkbox:hover input~.checkmark2 {
    background-color: #ccc;
}

.checkbox input:checked~.checkmark2 {
    background-color: #BF0B32;
}

.checkmark2:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox input:checked~.checkmark2:after {
    display: block;
}

.checkbox .checkmark2:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #eee;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

input[type=text],
input[type=tel],
input[type=zip],
input[type=email] {
    width: 100%;
    height: 32px;
    border: 1px solid #ddd;
    border-bottom: 1px solid #aaa;
    border-right: 1px solid #aaa;
    border-radius: 5px;
}

input[type=button] {
    width: 100%;
    max-width: 120px;
    height: 32px;
    background: #ddd;
    border: 1px solid #ddd;
    border-bottom: 2px solid #aaa;
    border-right: 2px solid #aaa;
    border-radius: 5px;
}

select {
    width: 100%;
    height: 32px;
    color: #222;
    border-radius: 5px;
    background-color:#fff;
}

textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #ddd;
    border-bottom: 1px solid #aaa;
    border-right: 1px solid #aaa;
    border-radius: 5px;
}

input[type=submit] {
    border-radius: 5px;
    width: 120px;
    height: 40px;
    background-color: #ccc;
    border-bottom: 2px solid #aaa;
    border-right: 2px solid #aaa;
    font-size: 1.2em;
}