Modifying the color of error message text

Change the color of error text message in the CSS file to a customized color. In the following example, the error message text color is orange (HEX color code #F9662F): #F9662F

.has-error .control-label, .has-error .form-control, .has-error
.error {
    color: #F9662F !important;        
 }