119
For the <input> tag, whenever I click the input box, a black outline is forming automatically. How to remove that?
<input>
<input placeholder="Enter email" />
To remove that focus when clicked you can use focus pseudo-class
focus
input:focus { outline: none; }