Currently working on freecodecamp's portfolio creation exercise. It should be a straightforward task, but I'm facing a small issue that's puzzling me.
I'm trying to remove the border and outline (when focused) from my contact-area form, but my attempts have been unsuccessful so far.
If you'd like to take a look, here's my codepen link - https://codepen.io/illpill/pen/WRgoVo?editors=1100
input, textarea {
color: #333 !important;
width: 100% !important;
border-bottom: 2px solid #666 !important;
border-top: 0px !important;
border-right: 0px !important;
border-left: 0px !important;
background-color: #e3e3e3 !important;
font-size: 22px !important;
}
input:focus {
outline: none !important;
}
This is the CSS in question. Can anyone spot what might be going wrong?