/*
---------------------------------------
form
---------------------------------------
*/

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"] {
    width: 100%;
    height: 45px;
    border: 1px solid #969A9C;
    border-radius: 5px;
    background-color: #fff;
    padding-left: 15px;
    box-sizing: border-box;
    font-size: 16px;
}
input[type="date"]{
    width: 175px;
}
input[type="number"]{
    width:85px;
}

select {
    width: 100%;
    height: 45px;
    border: 1px solid #969A9C;
    border-radius: 5px;
    background-color: #fff;
    padding-left: 15px;
    box-sizing: border-box;
    font-size: 16px;
}
textarea {
    width: 100%;
    min-height: 300px;
    border: 1px solid #969A9C;
    border-radius: 5px;
    background-color: #fff;
}
input[type=radio],
input[type=checkbox] {
    display: none;
}
input[type=radio] + span,
input[type=checkbox] + span {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding-left: 30px;
    color: #969A9C;
}
input[type=radio] + span:before,
input[type=checkbox] + span:before {
    position: absolute;
    content: ""!important;
    display: block;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #fff;
    border: 2px solid #969A9C;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}
input[type=radio] + span:after,
input[type=checkbox] + span:after {
    content: ""!important;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 7px;
    background-color: #fff;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    transition: none;
}
input[type=radio]:checked + span,
input[type=checkbox]:checked + span {
    color: #3B3230;
}
input[type=radio]:checked + span::before,
input[type=checkbox]:checked + span::before {
    border-color: #3B3230;
}
input[type=radio]:checked + span::after,
input[type=checkbox]:checked + span::after {
    background-color: #F58A32;
}
