<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<div class="container" id="form">
<h2 class="h2">Bootstrap's animated & overlayed form elements</h2>
<p>
The base about form elements the structure still the bootstrap structure, with a <code>.form-group</code> composed of a <code>label</code> and a <code>input.form-control</code>.
</p>
<div class="panel panel-default showcase">
<div class="panel-body">
<div class="form-group">
<label for="#form-control-1">Example 1</label>
<input class="form-control" id="form-control-1" type="text">
</div>
</div>
</div>
<p>
For using the animated version, just add the variant class <code>.-animated</code> on the <code>.form-group</code> element
</p>
<div class="panel panel-default showcase">
<div class="panel-body">
<div class="form-group -animated">
<label for="#form-control-2">Example 2</label>
<input class="form-control" id="form-control-2" type="text">
</div>
</div>
</div>