.dwe-form-wrapper{
max-width:600px;
margin:auto;
padding:40px;
border:3px solid #88374e;
border-radius:25px;
}

#dwe-form input,
#dwe-form select,
#dwe-form textarea{

width:100%;
padding:14px;
margin-bottom:14px;
border:none;
background:#fff;
font-size:15px;

}
#dwe-form input:focus,
#dwe-form textarea:focus,
#dwe-form select:focus {
    outline: none;
    border: 0px solid #8b3a4a;
    box-shadow: 0 0 0 2px rgba(139, 58, 74, 0.15);
}
#dwe-form textarea{

height:120px;
resize:none;

}

#dwe-form button{

width:100%;
padding:16px;
background:#88374e;
color:white;
border:none;
font-size:16px;
cursor:pointer;
}
#dwe-form button:hover{
    background:#2b1c17;
}

@media(max-width: 480px){
    .dwe-form-wrapper{
padding:10px;
}
}