how can we adjust the border radius of the input field focus.
HTML
CSS
.r
use the :focus pseudo selector
:focus
.rest:focus{ border-radius:0; }
DEMO