/* General body styling */
body.login {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#login {
    width: 100%;
    max-width: none;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

/* hide logo/heading */
#login > h1,
#nav,
#backtoblog{
    display: none;
}

.login .wp-pwd {
    margin-top: 0;
    position: relative;
}

.login .button.wp-hide-pw .dashicons {
    width: 1.25rem;
    height: 1.25rem;
    top: .25rem;
}

.login .button.wp-hide-pw {
    background: 0 0;
    border: 1px solid transparent;
    box-shadow: none;
    font-size: 14px;
    line-height: 2;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 40px;
    min-height: 40px;
    margin: 0;
    padding: 5px 9px;
    position: absolute;
    right: 0;
    top: 0;
}

.login-left,
.login-right {
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
}

/* Style the text section */
.login-left {
    background-color: #0073aa;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    text-align: center;
}

.login-left h1 {
    font-size: 2em;
}

/* Style the form section */
.login-right {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login form .input, .login input[type="text"], .login input[type="password"] {
    font-size: 24px;
    line-height: 1.33333333;
    width: 100%;
    border-width: .0625rem;
    padding: .1875rem .3125rem;
    margin: 0 6px 16px 0;
    min-height: 40px;
    max-height: none;
}

.login .button-primary {
    width: 100%;
}

