I'm using PrimeNG for Angular and I want to change the shadow of the input box when I focus it, right now it looks like this:
But I want to change that blue part to green, for example. Checking the documentation it tells me that I have to change the p-inputtext class, but it's not giving me the desired result. This is what I'm doing right now
body .p-inputtext{
border-color: green !important;
}
Result:
It's drawing the green border but it doesn't get rid of the blue part. How could I do this?

