Thanks Fernando! That did the trick. Lastly, can you please help me style the box when in focus? I’d like to remove the white background and the red border. I tried to add the following CSS, but when inspecting the element it is like there is a duplicate rule that it then defaults to (see private area).
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
color: var(--contrast);
/* background-color: var(--base-2); */
/*border-color: var(--contrast-3); */
}