/* Change Email, Password, and Remember Me label color on Login page */
.auth__label {
  color: #FFFFFF !important; /* Forces the color to override others */
}

/* Change Forgot Password link color on Login page */
.auth__link a {
  color: #FFFFFF !important; /* Forces the color to override others */
}

/* Optional: hover state */
.auth__link a:hover {
  color: #E12B2A !important; /* Example: Dark gray on hover */
}