You should be able to apply a different style by targeting that input and adding :focus
. So for example:
input[type=password]:focus { border-radius: 5px; }
Assuming that the input is of the type password that would give it rounded corners. Then just copy the rest of the styling from the other inputs to match.