I used various classes for margin:0 auto, and for center-alignment but not worked.
<div class="container">
<div class="col-md-12 newsletter">
<form action="#" method="post">
<div class="form-group col-md-6 col-xs-10 col-sm-10 col-lg-4">
<label for="email">Email address:</label>
<input type="email" class="form-control" id="email">
</div>
<div class="clearfix"></div>
<div class="form-group col-md-6 col-xs-10 col-sm-10 col-lg-4">
<label for="email">Email address:</label>
<input type="email" class="form-control" id="email">
</div>
</form>
</div>
</div>
You may add -offset- class to the div with col- classes. For example:
col-md-offset-4 will add extra space, so the input with label will be centered. For further information read this documentation
UPD You may also use flexbox. Apply this css style to your code:
But keep in mind that you will need to remove bootstrap classes (col-md, col-xs etc) from the div with form-group class name. You can view the working example with flexbox here
HTML:
CSS: