@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    /* font-family: 'Roboto', sans-serif; */
}
body{
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: rgba(131, 32, 170, 0.676);
}

.container{
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    padding: 35px;
    background-color: rgb(239, 239, 239);
    border-radius: 10px;
    min-width: 270px;
    max-width: 420px;
    
}
.head{
    font-size: 30px;
    font-weight: 600;
}
.row{
    display: flex;
    flex-direction: column;
    gap: 10px;
  max-width: 300px;
}
form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
textarea{
    resize: none;
     border-radius: 5px;
    height: max-content;
    padding: 10px;
    font-size: 16px;
    font-weight: 500; 
  max-width: 300px;
}
button{
    padding: 15px;
    border-radius: 5px;
    border: none;
    background-color: rgb(74, 0, 144);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  max-width: 300px;
}
select{
    padding: 10px 3px;
    border-radius: 5px;
  max-width: 300px;
}