/* Full-page background image for the WordPress login page */
body.login {
    background-image: url('https://pirply.com/wp-content/uploads/2025/10/pirply-platform-login-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.login h1 a {
    background-size: 100%!important;
    width: 75%!important;
    margin-bottom: -10px;
}

body.login div#login form#loginform, #lostpasswordform {
  border: none!important;
  box-shadow: 0px 2px 18px 0px #f1f1f1!important;
  -moz-box-shadow: 0px 2px 18px 0px #f1f1f1!important;
  -webkit-box-shadow: 0px 2px 18px 0px #f1f1f1!important;
}

body.login #login #loginform #user_pass {
    font-size: 15px;
}

#wp-submit {
  font-size: 16px!important;
}

body.login div#login p#nav a {
  font-size: 16px!important;
}

a.privacy-policy-link {
  display: none!important;
}

/* Add consent message above the WordPress login form CSS */
.login-consent-message {
    background-color: #f8f8f8;
    color: #444;
    font-size: 13px;
    padding: 12px 16px;
    border-left: 4px solid #ffc26d; /* matches your brand color */
    margin: 0 0 20px;
    line-height: 1.5;
}

/* Add message bar at the of the WordPress login page only */
#my-login-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #023335;
    color: #fff;
    font-size: 14px;
    padding: 12px 20px;
    z-index: 9999;
}

#my-login-bottom-bar .login-bar-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#my-login-bottom-bar a {
    color: #ccc;
    transition: color 0.3s ease;
    text-decoration: none !important;
}

#my-login-bottom-bar a:hover {
    color: #ffc26d;
}

/* Prevent overlap with login form */
html.login body {
    padding-bottom: 60px;
}

/* Primary login button styling */
.wp-core-ui .button-primary {
    background-color: #023335;
    border-color: #023335;
    color: #fff;
    text-shadow: none;
    box-shadow: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    text-transform: uppercase;
}

/* Hover/focus/active states */
.wp-core-ui .button-primary:hover,
.wp-core-ui .button-primary:focus,
.wp-core-ui .button-primary:active {
    background-color: #035d61; /* Slightly lighter shade for hover */
    border-color: #035d61;
    color: #fff;
}

/* Lost Your Password link */
#nav {
    text-align: center;
    margin-top: 16px;
}

#nav a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

#nav a:hover {
    color: #ffc26d;
}


#backtoblog a {
    display: none;
}
