section.form{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1e1103;
}

section.form .title{
    color: #F4E0C0;
    font-size: 1.5em;
    font-weight: 600;
}

section.form .sub-title{
    margin-bottom: 2em;
    font-size: 0.875em;
    color: #F4E0C0;
}

section.form .content-wrapper{
    width: 90%;
}

section.form .form-group{
    position: relative;
    margin-bottom: 1em;
}

section.form .form-group .label{
    color: #F4E0C0;
}

section.form .form-group input[type="text"]{
    margin-top: 1em;
    padding: 0.5em 1em;
    width: 100%;
    width: -webkit-fill-available;
    background-color: #342512!important;
    border-radius: 0.25em;
    border: solid 1px #7c6643;
    color: white;
}

section.form .form-group .option-group{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1em;
}

section.form .form-group .option-group select{
    width: auto;
    margin-top: 0;
}

section.form .form-group .option-group select:nth-of-type(1){
    width: 9em;
}

section.form .form-group .option-group select:nth-of-type(2){
    width: 6em;
}

section.form .form-group .option-group select:nth-of-type(3){
    width: 6em;
}

section.form .form-group select{
    margin-top: 1em;
    padding: 0.5em 1em;
    width: 100%;
    background-color: #342512!important;
    border-radius: 0.25em;
    border: solid 1px #7c6643;
    color: white;
}

section.form .form-group .text{
    display: block;
    margin-left: 1em;
    margin-right: 1em;
    color: white;
}

section.form .btn-wrapper{
    margin-top: 3em;
    text-align: center;
}

section.form .btn-wrapper .btn-submit{
    padding: 0.5em 1.25em;
    color: #140b01;
    background: #f3e0c3;
    border-radius: 0.5em;
    cursor: pointer;
}

section.form .btn-wrapper .btn-submit:hover{
    opacity: 0.9;
}


@media all and (min-width:600px){
    section.form .content-wrapper{
        width: auto;
    }
}