Green / Red Popups NOT all moved / changed

Hello and my apologies if this has been answered but I have been searching for hours and can’t find it ANYWHERE.



I have been trying like many here to move all of the Green / Red Popups to the center of the screen and did apply the new code suggested as follows



IN …/skins/MY_TEMPLATE/customer/styles.base.css

ORIGINAL

/* Notification Box /

.cm-notification-container {

position: fixed;

right: 8px;

top: 0px;

z-index: 16;

}



CHAGNED TO

/
Notification box */

.cm-notification-container {

right: 50%;

margin-right: -137px;

top: 50%;

margin-top: -27px;

position: fixed;

z-index: 16;

}



and that has worked for most of the popups however there are some that aren’t moved.



FOR EXAMPLE: If a user requests a password reset. This still appears in the upper right corner. Anyone have any idea where THAT .css code is located?



Thanks.