Add text-align: left to .form-control
Created by: Mevrael
.form-control does not have text-align and because of that text-align might be inherited from parent element. Inputs should have text-align: left by default.
.form-control used as a div contenteditable=true
<div class="form-group">
<div contenteditable="true" class="form-control"></div>
<input type="hidden">
</div>