Currently, the site has the following css class that is intended to be used for note (longer texts) entries in a form.
.scrollabletextbox { height:100px
Try replacing input type="text" with textarea tag.
input type="text"
textarea
Change your code to:
It sends data just as a normal input tag, so you can get data from it with the same methods.
input
Read more info about textarea tag