I'm using Bootstrap css
view :
<div class="container">
@using (Html.BeginForm(new { @class="form-horizontal"}))
{
@Html.ValidationSummary(true)
<div class="form-group">
@Html.LabelFor(model => model.Rank_name, new { @class = "control-label col-sm-2" })
<div class="col-sm-10">
@Html.TextBoxFor(model => model.Rank_name, new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.Rank_name)
</div>
</div>
<div class="form-group">
@Html.LabelFor(model => model.rank_code, new { @class = "control-label col-sm-2" })
<div class="col-sm-10">
@Html.TextBoxFor(model => model.rank_code, new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.rank_code)
</div>
</div>
<div class="form-group">
@Html.LabelFor(model => model.Target_amount, new { @class = "control-label col-sm-2" })
<div class="col-sm-10">
@Html.TextBoxFor(model => model.Target_amount, new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.Target_amount)
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</div>
}
</div>
but I'm not getting the output exactly what i want,

I have used this format Horizontal form
but there is no space between those boxes and the box size is too long .I mean its not good format .what should i do?
Edited: and my Layout :
<head>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
<script src="~/Scripts/bootstrap.min.js"></script>
<link href="~/Content/bootstrap.min.css" rel="stylesheet" />
</head>
Edited 2:
I have put bootstap.css before the cite.css then i got space between those boxes and box sizes are within that div tag but the entire page font size is very very small .I can't read those text.