/* Change login page background */
body.login {
    background-color: #F3F1F8;
    font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Custom logo on login page */
.login h1 a {
    background-image: url('logo-planet-payoff.png');
    background-size: contain;
    width: 100%;
    height: 160px;
}

.login .wp-login-logo a{
	background-image: url('logo-planet-payoff.png');
	background-size: contain;
    width: 100%;
    height: 160px;
}

/* Style the login form */
.login form {
    background-color: #fff;
    border-radius: 16px;
    padding: 32px;
}

.login form .input {
    width: 100%;
    padding: 10px;
    border: 1px solid #D3CEE0;
    border-radius: 8px;
    background-color: #f7f5fa;
    font-size: 16px;
    color: #3a344b;
}

.login form .input:focus{
    border-color: #552CB7;
}

/* Style the "Remember Me" checkbox */
.login form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    color: #552CB7;
    border-color: #D3CEE0;
}

/* Custom login button */
.wp-core-ui .button-primary {
    background-color: #552CB7;
    border: none;
    color: #fff;
    border-radius: 8px;
    width:100%;
    font-size: 14px;
    font-weight: 600;
    margin-top:12px;
}

.wp-core-ui .button-group.button-large .button, .wp-core-ui .button.button-large {
    padding: 6px 12px;
}

.wp-core-ui .button-primary:hover {
    background-color: #46229C;
}


/* Custom text color for links */
.login a{
    color: #552CB7;
}

.login a:hover{
    color:#46229C;
}

/* Hide the Privacy Policy link on the login page */
.privacy-policy-page-link{
    display: none;
}