By default Zend Form Text elements don\'t have a width specified. Textarea elements have a default of rows="24" and cols="80". But
rows="24"
cols="80"
Try this:
$text = new Zend_Form_Element_Text('subject');
$text ->setAttrib('maxlength','100');