/*form*/

.forms{
    display: table;
    width: 80%;
    max-width: 900px;
    margin: auto;
}
.forms dt{
    padding-right: 50px;
}

.non-padding{
    padding-top: 0px;
}

.title{
    font-size: 16px;
    padding-top: 30px;
}

.subtitle{
    font-size: 12px;
    font-weight: 400;
}

.necessary{
    text-align: center;
    background-color: #02c97d;
    color: white;
    float: right;
    padding: 5px 15px;
    font-size: 10px;
}

.necessary-1{
    text-align: center;
    background-color: white;
    color: white;
    float: right;
    padding: 5px 15px;
    font-size: 10px;
}


.forms input{
    width: 100%;
    height: 45px;
    background-color: #EEEEEE;
    border: none;

}

.forms textarea{
    width: 100%;
    height: 250px;
    background-color: #EEEEEE;
    border: none;
    resize: none;
}

dl{
    display: table-row;
    width: 75%;
    margin: auto;
}

dt,dd{
    display: table-cell;
    padding-top: 30px;
}

dt{
    vertical-align: top;
    padding-top: 30px;
    width: 200px;
}

dd{
    padding-top: 10px;
    padding-left: 75px;
}

.column{
    padding-top: 30px;
}


.about-personal-information {
    padding-top: 20px;
    padding-bottom: 5px;
}

.about-personal-information a {
    color: #252d40;
    font-weight: bold;
    text-decoration: underline;
    font-size: 16px;
}

.form-agree {
    padding-top: 20px;
    padding-bottom: 20px;
}

.btn-lg-block {
    padding-top: 10px;
    padding-bottom: 10px;
}

.btn-lg-block button {
    margin-bottom: 20px;
}

.checkbox-input-agree {
    display: none;
}

.checkbox-parts-agree {
    padding-left: 50px;
    padding-top: 10px;
    position:relative;
}

.checkbox-parts-agree::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-color: #f2f3f3;
}

.checkbox-input-agree:checked + .checkbox-parts-agree::after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    background-color: #04c97d;
}

.buttons{
    height: 140px;
    width: 50%;
    margin: auto;
}

.reset{
        height: 50px;
        width: 47%;
        font-size: 16px;
        font-weight: bold;
        padding: 12px ;
        background-color: white;
        border: 1px solid grey;
        border-radius: 60px;
        margin: auto;
        margin-top: 40px;
        text-align: center;
        float: left;
    }

.submit{
        height: 50px;
        width: 47%;
        font-size: 16px;
        font-weight: bold;
        padding: 12px ;
        background-color: #02c97d;
        border-radius: 60px;
        margin: auto;
        margin-top: 40px;
        text-align: center;
        float: right;
    }

.reset span{
        color: grey;
}

.submit span{
        color: white;
}