@model HelloWorldMvcApp.SampleViewModel
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 101 Template</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
border-bottom: 1px solid red;
<div class="col-md-6 col-md-offset-3">
@Html.TextBoxFor(model => model.Name, new { @class = "form-control input-border-bottom", @id = "name", @name = "name", @placeholder = "Nombre" })
@Html.ValidationMessageFor(model => model.Name, "", new { @class = "text-danger" })