In this example, to remove a border, simply write:
.form-control { border: 0; }
In your CSS file.
This will remove the borders from all the fields of the form, but a more flexible approach is to attach the class to the fields of the form that you want to have no borders, so your HTML code will look something like this:
<input type="email" class="form-control no-border" id="inputEmail3" placeholder="Email">
and your CSS:
.no-border { border: 0; box-shadow: none; }
source share