
fieldset{
    float: right;
    width: 450px;
    margin-bottom: 30px;
}
.mail{
    
    color: rgba(93, 109, 62, 0.75);
    text-decoration: none;

}

.mail:hover{
text-shadow: .5px 0 0 rgba(93, 109, 62, 0.75);
border-bottom: 2px solid rgba(93, 109, 62, 0.75);
padding-bottom: 2px;
text-decoration: none;
}

input, textarea{
    border: 1.5px solid rgb(221, 183, 165);
    border-radius: 5px;
    width: 100%;
    
}
.background{
    background-color: rgb(252, 245, 237);
    box-shadow: 1px 1px 5px rgb(221, 183, 165);
    border: none;
    border-radius: 5px;
    padding: 30px;
    
}
.two-col{
    overflow: hidden;
    padding-bottom: 20px;
}
.two-col .col1, .two-col .col2{
    width: 48%;

}
.two-col .col1{
    float: left;
}
.two-col .col2{
    float: right;
}
.two-col label{
    display: block;
}
.submit{
    width: 80px;
    float: right;
    background-color: rgb(181, 63, 27);
    color: rgb(252, 245, 237);
    border: none;
    border-radius: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.submit:hover{
    background-color: rgb(221, 183, 165);
    color: rgb(181, 63, 27);
}

@media (max-width: 686px){
    fieldset{
        width: 100%;
        
    }
}