@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap');
 *{
    box-sizing: border-box;
} 
body{
    background-color: #9b59b6;
    font-family: 'Ubuntu', sans-serif ;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; 
    margin: 0;
    background-image: linear-gradient(to right,#9b59b6,#f10d7f, #c84084);
}
.header{
    display: block;
    border: 1px solid #f0f0f0;
    background-color: white;
    border-bottom-color: black;
    border-radius: 4px;
    padding-left: 20px;
    /* font-size: 20px; */
    /* text-align: center; */
    /* padding-left: 25%; */
    /* width: 100%; */
}
.container{
    width: 400px;
    max-width: 100%;

}
.form{
    padding: 30px 40px;
    border: 1px solid whitesmoke;
    width: 100%; 
    height: 100%; 
    background: white;
    border-radius: 4px;
}
.form-control{
    margin-top: 10px;
    padding-bottom: 15px;
}
.form-control label{
    display: inline-block;
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 0.781);
}
.form-control input{
    display: block;
    padding: 10px;
    width: 100%;
    border: 2px solid #f0f0f0;
    /* border-color: rgba(116, 121, 106, 0.815); */
}
.form-control #text-area{
    border: 2px solid #f0f0f0;
}
button{
    width: 100%;
    font-size: 25px;
    border: 2px solid #8e44ad;
    background: #9b59b6;
    display: block;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}
button:hover{
    background: #8d0ac5;    
}
@media(max-width:335px){
    .form-control #text-area{
        width: 250px;
    }
}
@media(max-width: 290px){
    .form-control #text-area{
        width: 200px;
    }
}
@media(max-width: 243px){
    .form-control #text-area{
        width: 150px;
    }
}

