When styling a form element in Bootstrap 3, it renders an ugly button on the in Firefox on OS X:
This is easy. You just need to put inside .form-control this:
.form-control
.form-control{ -webkit-appearance:none; -moz-appearance: none; -ms-appearance: none; -o-appearance: none; appearance: none; }
This will remove browser's appearance and allow your CSS.