body.login {
    min-height: 100vh;
    background: #f5f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.login #login {
    width: 1120px;
    max-width: 92%;
    min-height: 560px;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border-radius: 34px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    position: relative;
    box-shadow: 0 28px 80px rgba(109, 93, 252, 0.18);
}

body.login #login::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / 4;
    background-image: url("../images/accessiUP.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fbfaff;
}

body.login h1 {
    display: none;
}

.accessiup-heading {
    grid-column: 2;
    margin: 70px 70px 30px;
}

.accessiup-heading h2 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    color: #111827;
}

.accessiup-heading h2 span {
    color: #6d5dfc;
    display: block;
}

.accessiup-heading p {
    margin: 0;
    max-width: 420px;
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

.login form {
    grid-column: 2;
    margin: 0;
    padding: 0 70px 80px;
    border: none;
    box-shadow: none;
    background: #ffffff;
}

.login label {
    color: #1e293b;
    font-size: 14px;
    font-weight: 700;
}

.login input[type="text"],
.login input[type="email"],
.login input[type="password"] {
    width: 100%;
    border: 1px solid #dbe3ef;
    border-radius: 14px;
    min-height: 54px;
    padding: 13px 16px;
    font-size: 16px;
    box-shadow: none;
}

.login input:focus {
    border-color: #6d5dfc !important;
    box-shadow: 0 0 0 3px rgba(109, 93, 252, 0.18) !important;
}

.forgetmenot {
    margin-top: 10px;
}

.forgetmenot label {
    font-weight: 600;
}

.wp-core-ui .button-primary {
    width: 100%;
    height: 54px;
    border: none !important;
    border-radius: 14px;
    background: #6d5dfc !important;
    font-size: 18px;
    font-weight: 800;
    transition: all 0.2s ease;
}

.wp-core-ui .button-primary:hover {
    background: #5848e8 !important;
    transform: translateY(-1px);
}

#nav {
    position: absolute;
    right: 70px;
    bottom: 42px;
    width: calc(45% - 140px);
    margin: 0;
    padding: 0;
    text-align: center;
}

#nav a {
    color: #6d5dfc !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

#nav a:hover {
    text-decoration: underline;
}

/* Hide Remember Me */
.forgetmenot {
    display: none !important;
}

#backtoblog,
.language-switcher,
.language-switcher-wrap,
#language-switcher {
    display: none !important;
}

@media (max-width: 900px) {
    body.login #login {
        display: block;
        min-height: auto;
    }

    body.login #login::before {
        display: none;
    }

    .accessiup-heading {
        margin: 45px 30px 25px;
    }

    .login form {
        padding: 0 30px 80px;
    }

    #nav {
        left: 30px;
        right: 30px;
        bottom: 35px;
        width: auto;
    }
}