input border when active code example
Example 1: css remove border input focus
textarea:focus, input:focus{
outline: none;
}
Example 2: input outline focus
input:focus, textarea:focus {
background-color: #FFFF66;
border: 1px solid #F47E58;
}