/**
 * Colorize the login button.
 *
 * @package WebDevStudios\SSO
 * @since 1.0.0
 */

/**
 * Make it orange.
 *
 * @author Aubrey Portwood
 * @since 1.0.0
 */
.wds-sso-login .button {
	filter: hue-rotate(184deg) brightness(150%);
}

/**
 * Set the color to darker orange on hover.
 *
 * @author Aubrey Portwood
 * @since 1.0.0
 */
.wds-sso-login .button,
.wds-sso-login .button:hover,
.wds-sso-login .button:active {

	/* Set the color to 1/2 brightness since we up it above */
	color: rgba(255, 255, 255, 0.60);
}
