@Manseuk answer extension (doesn't have enough reputation to post a comment), you can also specify the html style attribute inside the form builder, if you prefer:
$form = $this->createFormBuilder($row) ->add('comment', null, array( 'label' => 'input comment', 'attr' => array('style' => 'width: 200px') ) );
Edited from html attribute for width to html style attribute .
source share