Hi @rockingritu ,
Hope you are doing well.
You can change the colors for those labels by using some Custom CSS. Please use these Custom CSSs’ given below –
Custom CSS to change the color of “Remember me”
.eael-checkbox-label.rememberme {
color: orange;
}
For hover:
.eael-checkbox-label.rememberme:hover {
color: purple;
}
Custom CSS to change the color of “Forget Password”
.eael-login-form-wrapper .forget-pass a {
color: purple !important;
}
For hover:
.eael-login-form-wrapper .forget-pass a:hover {
color: orange !important;
}
Custom CSS to change the color of “Sign in”
a#eael-lr-login-toggle-lostpassword {
color: purple;
}
For hover:
a#eael-lr-login-toggle-lostpassword:hover {
color: orange;
}
Please do check this doc to learn more about Custom CSS – https://essential-addons.com/elementor/docs/faq/apply-custom-css-elements/
Let me know how it goes.
Thank you.