I have successfully removed all borders on my text input field except for the bottom. However, once I begin typing in the field, the border reappears. How can I resolve this issue?
input {
margin-top: 10px;
width: 25%;
height: 39px;
border: 2px solid rgba(137, 43, 226, 0.562);
border-top: 0;
border-right: 0;
border-left: 0;
}
<input type="email" placeholder='Enter email' required /> <br />
<input type="password" placeholder='Enter password' required /> <br />