all such things can be solved by css. You need to study the source of the page to figure out how to change the css to do what you want.
typically a feature will have a custom class on a container div somewhere, so for survey probably something like
.survey textarea { width: 350px; }
or if not a textarea then
.survey input[type="text"] { width:350px; }