https://i.sstatic.net/oqRwR.jpg
In the image above, I need to adjust the position of the textbox to align it with the TextArea. Is there a Bootstrap class that can help me achieve this? My current version of Bootstrap is 3.3.6.
HTML
<div class="panel-body">
<div class="col-md-12 col-sm-12">
<div class="row top-buffer">
<div class="col-md-2">
Quote Date:
</div>
<div class="col-md-2">
<asp:TextBox ID="txtReference" class="form-control" runat="server" ></asp:TextBox>
</div>
<div class="col-md-2">
Quote Prepared By:
</div>
<div class="col-md-2">
<asp:TextBox ID="txtCountry" class="form-control" runat="server"></asp:TextBox>
</div>
</div>
<div class="row top-buffer">
<div class="col-md-2">
Reseller:
</div>
<div class="col-md-2">
<asp:TextBox ID="TextBox1" class="form-control" runat="server" ></asp:TextBox>
</div>
<div class="col-md-2">
Notes:
</div>
<div class="col-md-2">
<asp:TextBox ID="TextBox2" class="form-control" runat="server" TextMode="MultiLine" Height="252px" Width="414px"></asp:TextBox>
</div>
</div>
<div class="row top-buffer">
<div class="col-md-2">
Reseller Contact:
</div>
<div class="col-md-2">
<asp:TextBox ID="TextBox3" class="form-control" runat="server" ></asp:TextBox>
</div>
</div>
</div>
</div>
</div>