@import url('https://fonts.googleapis.com/css2?family=Montagu+Slab:wght@200;300;400&family=Roboto:wght@300;400&display=swap');
*{
    font-family: 'Montagu Slab', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #666df3;
}
.container{
    width: 370px ;
    border-radius: 7px;
    padding: 25px 30px;
    background: #fff;
}
.container header{
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 10px 0;

}

.container form .row{
    display: flex;
    flex-direction: column;
}
.container form .row label{
    margin-bottom: 5px;
    font-size: 18px;
}
form :where(textarea,select,button){
    outline: none;
    width: 100%;
    border: none;
    border-radius: 5px;
} 
form .row textarea{
    border: 1px solid #999;
    font-size: 15px;
    height: 100px;
    padding: 8px;
    resize: none;
    margin: 10px 0;
}
.outer{
    height: 35px;
    border: 1px solid #999;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
button{
    background: #666df3;
    color: white;
    height: 40px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 20px;
}