How do I make it so the textarea and input just have a line/bottom border for the user to type?

How do I make it so the textarea and input just have a line/bottom border for the user to type? I tried using border bottom color but it didnt do what i thought it would. which is most of css.

Hi!
You already removed the bottom with

bottom: none;

When you select the input, you’ll see the default blue outline. If your want to remove that as well, add

outline: none;

finally add a border-bottom

border-bottom: 1px solid white;

and you should be all set.