input{
    font-size: 20px;
    height: 30px;
}

textarea{
    font-size: 20px;
    height: 40px;
    max-width: calc(100% - 40px);
    min-height: 40px;
    max-height: 200px;
}
input, textarea{
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    min-width: calc(100% - 40px);
    padding-left: 20px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-color: rgb(230, 230, 230);
    outline: none;
    border-width: 2px;
    border-style: solid;
}
input:focus ,textarea:focus{
    border-color: brown;
}
textarea{
    font-size: 20px;
    max-width: calc(100% - 40px);
    min-height: 300px;
    max-height: 300px;
}