remove white border when clicking on input css code example
Example 1: remove blue border on a input
input:focus {
outline: none !important;
}
Example 2: how to remove form border after click input
.from_Input{
border: none;
outline:none;
}
.from_Input:active{
border: none;
outline:none;
}