The problem is not in your php code, it's in your CSS. Check your stylesheet.css for the selector
Code:
#contact_form input, textarea, select {
and after that add
Code:
#contact_form textarea { width: 95%; }
The problem is that the CSS is currently setting the width of the textarea box to 190px.