I am wondering if its possible to remove the default blue and yellow glow when I click on a text input / text area using CSS?
Sure! You can remove blue border also from all HTML elements using *
*{ outline-color: transparent; outline-style: none; }
And
*{ outline: none; }