/*
 * Styles the "Legacy customer? Sign in here" link inside the AuthKit
 * footer. Mirrors the plugin's own .wa-linkbtn (e.g. "Create an
 * account") so the two footer affordances read identically: primary
 * color, persistent underline, primary-hover color on hover/focus.
 * Pinning :link and :visited to the same color prevents the default
 * UA purple-on-visited from making the link look stale.
 */
#workos-authkit-root .slw-legacy-login-link,
#workos-authkit-root .slw-legacy-login-link:link,
#workos-authkit-root .slw-legacy-login-link:visited {
	color: var(--wa-primary);
	text-decoration: underline;
}

#workos-authkit-root .slw-legacy-login-link:hover,
#workos-authkit-root .slw-legacy-login-link:focus {
	color: var(--wa-primary-hover);
}

