How can I go about on changing the text colour in the Enter using password page?

Hello @tansrirain458
Go to online store ---------> themes --------------> actions ------> edit code------->base.CSS ------line number 608
check below code there.

.underlined-link, .customer a {
    color: rgba(var(--color-link), var(--alpha-link));
}

and replace with this code.

.underlined-link, .customer a {
color: white !important;
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks