I have the following line in my view:
<%= Html.TextBoxFor(m => m.Description)%>
To me it worked by adding the "input" in the CSS for @Html.TextBoxFor:
CSS:
.campoTexto input { width: 50px; }
For:
@Html.TextBoxFor(model => model.nombre)