This is just an example. I wanted the border of input to be rounded when it is clicked. But it did not happen.
.username {
border-radius: 0%;
}
.username :focus{
border-radius: 30%;
}
<input class="username" type="text" placeholder="Username or Email">