how to disable input element border code example
Example 1: html input box no border
border-width:0px;
border:none;
outline:none;
Example 2: change border highlight color on an input text element
.input:focus {
outline: none !important;
border:1px solid red;
box-shadow: 0 0 10px #719ECE;
}