I have the following line in my view:
<%= Html.TextBoxFor(m => m.Description)%>
You can attach it as an attribute. Try this:
<%= Html.TextBoxFor(m => m.Description, new { style = "width:20em;" })%>