I'm currently working on a login screen for my next.js application and I've encountered an issue where the border color changes to a mixture of white and blue when I select an input field.
https://i.stack.imgur.com/R2yKa.png
I attempted to resolve this problem by using the following code snippet:
.input:focus {
border: 5px solid #f23;
}
However, instead of changing the border color, it produced unexpected results:
https://i.stack.imgur.com/9DVsT.png
Can anyone advise me on how to successfully change the border color?
<input type="text" className={styles.input} style={{ marginBottom: 10 }} autoComplete="off" autoCorrect="off" autoCapitalize="off" aria-required="true" spellCheck="false" placeholder="Email" ></input>