:root {
    --nx-login-ink: #0f172a;
    --nx-login-muted: #64748b;
    --nx-login-primary: #2563eb;
    --nx-login-primary-2: #7c3aed;
    --nx-login-line: rgba(148, 163, 184, .28);
    --nx-login-card: rgba(255, 255, 255, .94);
}

body.login {
    min-height: 100vh;
    margin: 0;
    background: #f6f8ff;
    color: var(--nx-login-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body.login::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 86% 18%, rgba(124, 58, 237, .12), transparent 34%),
        radial-gradient(circle at 62% 88%, rgba(37, 99, 235, .10), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
    z-index: -3;
}

body.login::after {
    content: "";
    position: fixed;
    right: -14vw;
    bottom: -24vh;
    width: 60vw;
    height: 60vw;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 99, 235, .10), transparent 66%);
    z-index: -2;
}

.nexus-login-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(430px, 1fr) minmax(520px, 1.05fr);
}

.nexus-login-brand {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 58px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 4%, rgba(59, 130, 246, .28), transparent 34%),
        radial-gradient(circle at 96% 42%, rgba(99, 102, 241, .34), transparent 32%),
        linear-gradient(145deg, #071225 0%, #111a5a 52%, #10125d 100%);
}

.nexus-login-brand::before,
.nexus-login-brand::after {
    content: "";
    position: absolute;
    left: -12%;
    right: -18%;
    height: 220px;
    border-radius: 50%;
    filter: blur(.2px);
    opacity: .82;
}

.nexus-login-brand::before {
    bottom: -80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, .65), rgba(124, 58, 237, .12));
    transform: rotate(-7deg);
}

.nexus-login-brand::after {
    bottom: -18px;
    background: linear-gradient(135deg, rgba(14, 165, 233, .35), rgba(79, 70, 229, .45));
    transform: rotate(9deg);
}

.nexus-login-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.nexus-login-orb--one {
    top: -160px;
    left: -110px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(96, 165, 250, .20);
    background: radial-gradient(circle at 70% 70%, rgba(59, 130, 246, .30), transparent 58%);
}

.nexus-login-orb--two {
    right: 9%;
    bottom: 8%;
    width: 210px;
    height: 210px;
    background: radial-gradient(circle, rgba(124, 58, 237, .24), transparent 62%);
}

.nexus-login-brand__inner {
    position: relative;
    z-index: 2;
    width: min(560px, 100%);
}

.nexus-login-mark {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    border-radius: 26px;
    color: #fff;
    font-size: 48px;
    font-weight: 950;
    letter-spacing: -.08em;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 48%, #7c3aed 100%);
    box-shadow: 0 26px 56px rgba(37, 99, 235, .35);
}

.nexus-login-brand__title {
    font-size: clamp(56px, 7vw, 104px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.nexus-login-brand__subtitle {
    margin-top: 18px;
    color: rgba(147, 197, 253, .96);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .44em;
    text-transform: uppercase;
}

.nexus-login-brand__line {
    display: block;
    width: 72px;
    height: 5px;
    margin: 34px 0 28px;
    border-radius: 99px;
    background: linear-gradient(90deg, #38bdf8, #7c3aed);
}

.nexus-login-brand__tagline {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: clamp(24px, 2.3vw, 34px);
    line-height: 1.34;
    font-weight: 700;
}

.nexus-login-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 52px;
}

.nexus-login-features div {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, .9);
}

.nexus-login-features .dashicons {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, .10);
    color: #93c5fd;
    font-size: 21px;
}

.nexus-login-features strong {
    font-size: 14px;
    font-weight: 800;
}

.nexus-login-features small {
    color: rgba(226, 232, 240, .72);
    font-size: 12px;
    line-height: 1.35;
}

.nexus-login-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px;
}

.login #login {
    width: min(100%, 560px);
    margin: 0;
    padding: 46px 52px 44px;
    border: 1px solid rgba(226, 232, 240, .85);
    border-radius: 28px;
    background: var(--nx-login-card);
    box-shadow: 0 34px 80px rgba(15, 23, 42, .10);
    backdrop-filter: blur(16px);
}

.login h1 {
    margin: 0 0 18px;
}

.login h1 a {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #60a5fa, #2563eb 48%, #7c3aed) !important;
    box-shadow: 0 18px 40px rgba(37, 99, 235, .26);
    position: relative;
    text-indent: -9999px;
    overflow: hidden;
}

.login h1 a::after {
    content: "N";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 40px;
    font-weight: 950;
    text-indent: 0;
    letter-spacing: -.08em;
}

.login h1::after {
    content: attr(data-nexus-title);
    display: block;
    margin-top: 8px;
    color: #0f172a;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -.035em;
    text-align: center;
}

.login h1::before {
    content: attr(data-nexus-subtitle);
    display: block;
    transform: translateY(116px);
    color: #64748b;
    font-size: 15px;
    line-height: 1.45;
    text-align: center;
}

.login form {
    margin-top: 52px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.login label {
    color: #1e293b;
    font-size: 14px;
    font-weight: 750;
}

.login form .input,
.login input[type="text"],
.login input[type="password"] {
    min-height: 56px;
    margin-top: 8px;
    padding: 0 16px;
    border: 1px solid rgba(148, 163, 184, .34);
    border-radius: 12px;
    background: rgba(255, 255, 255, .84);
    color: #0f172a;
    font-size: 16px;
    box-shadow: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.login form .input:focus,
.login input[type="text"]:focus,
.login input[type="password"]:focus {
    border-color: rgba(79, 70, 229, .68);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, .10);
    outline: none;
}

.login .forgetmenot {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.login .forgetmenot label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-weight: 650;
}

.login input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border-color: rgba(100, 116, 139, .45);
}

.login .submit {
    margin: 26px 0 0;
}

.wp-core-ui.login .button-primary {
    width: 100%;
    min-height: 56px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #7c3aed) !important;
    color: #fff;
    font-size: 16px;
    font-weight: 850;
    text-shadow: none;
    box-shadow: 0 18px 34px rgba(37, 99, 235, .24);
    transition: transform .18s ease, box-shadow .18s ease;
}

.wp-core-ui.login .button-primary:hover,
.wp-core-ui.login .button-primary:focus {
    transform: translateY(-1px);
    box-shadow: 0 22px 42px rgba(37, 99, 235, .28);
}

.login .button.wp-hide-pw {
    min-height: 56px;
    color: #64748b;
}

.login #nav,
.login #backtoblog {
    margin: 18px 0 0;
    padding: 0;
    text-align: center;
}

.login #nav a,
.login #backtoblog a,
.login .privacy-policy-page-link a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.login #nav a:hover,
.login #backtoblog a:hover,
.login .privacy-policy-page-link a:hover {
    color: #7c3aed;
}

.login .message,
.login .notice,
.login #login_error {
    margin: 0 0 20px;
    padding: 14px 16px;
    border-left: 0;
    border-radius: 14px;
    background: rgba(239, 246, 255, .95);
    color: #1e293b;
    box-shadow: none;
}

.login #login_error {
    background: rgba(254, 242, 242, .95);
    color: #991b1b;
}

.nexus-login-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    margin: 28px 0 16px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 650;
}

.nexus-login-divider::before,
.nexus-login-divider::after {
    content: "";
    height: 1px;
    background: rgba(148, 163, 184, .28);
}

.nexus-login-socials {
    display: grid;
    gap: 10px;
}

.nexus-login-social {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(148, 163, 184, .32);
    border-radius: 12px;
    background: rgba(255, 255, 255, .82);
    color: #1e293b;
    text-decoration: none;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.nexus-login-social:hover {
    transform: translateY(-1px);
    border-color: rgba(79, 70, 229, .36);
    box-shadow: 0 12px 26px rgba(15, 23, 42, .07);
}

.nexus-login-social span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 900;
}

.nexus-login-social--google span {
    color: #4285f4;
    background: #fff;
}

.nexus-login-social--facebook span {
    color: #fff;
    background: #1877f2;
    font-family: Arial, sans-serif;
    font-size: 22px;
}

.nexus-login-social strong {
    justify-self: center;
    margin-left: -38px;
    font-size: 15px;
    font-weight: 800;
}

.nexus-login-social.is-disabled {
    cursor: pointer;
}

.nexus-login-secure-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 20px 0 0;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 650;
}

.nexus-login-secure-note .dashicons {
    width: 16px;
    height: 16px;
    font-size: 16px;
}

.nexus-login-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 99999;
    transform: translateX(-50%) translateY(18px);
    opacity: 0;
    max-width: min(520px, calc(100vw - 32px));
    padding: 13px 16px;
    border-radius: 14px;
    color: #fff;
    background: rgba(15, 23, 42, .94);
    box-shadow: 0 20px 44px rgba(15, 23, 42, .24);
    transition: transform .18s ease, opacity .18s ease;
}

.nexus-login-toast.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

@media (max-width: 1180px) {
    .nexus-login-shell {
        grid-template-columns: 1fr;
    }

    .nexus-login-brand {
        min-height: 360px;
        padding: 54px 32px;
    }

    .nexus-login-brand__inner {
        text-align: center;
    }

    .nexus-login-mark,
    .nexus-login-brand__line {
        margin-left: auto;
        margin-right: auto;
    }

    .nexus-login-features {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    .nexus-login-main {
        min-height: auto;
        padding: 44px 24px 56px;
    }
}

@media (max-width: 640px) {
    .nexus-login-brand {
        min-height: 300px;
        padding: 42px 22px;
    }

    .nexus-login-brand__title {
        font-size: 48px;
    }

    .nexus-login-brand__subtitle {
        letter-spacing: .28em;
        font-size: 12px;
    }

    .nexus-login-brand__tagline {
        font-size: 20px;
    }

    .nexus-login-features {
        display: none;
    }

    .login #login {
        padding: 34px 24px 30px;
        border-radius: 22px;
    }
}


/* Nexus compact login refinement */
@media (min-width: 1181px) {
    body.login {
        overflow: hidden;
    }

    .nexus-login-brand {
        padding: 48px 52px;
    }

    .nexus-login-mark {
        width: 72px;
        height: 72px;
        margin-bottom: 22px;
        border-radius: 22px;
        font-size: 40px;
    }

    .nexus-login-brand__title {
        font-size: clamp(52px, 5.8vw, 86px);
    }

    .nexus-login-brand__subtitle {
        margin-top: 12px;
        font-size: 15px;
        letter-spacing: .38em;
    }

    .nexus-login-brand__line {
        width: 64px;
        height: 4px;
        margin: 24px 0 22px;
    }

    .nexus-login-brand__tagline {
        font-size: clamp(20px, 1.8vw, 27px);
        line-height: 1.32;
    }

    .nexus-login-features {
        gap: 12px;
        margin-top: 34px;
    }

    .nexus-login-features div {
        grid-template-columns: 36px 1fr;
        column-gap: 10px;
    }

    .nexus-login-features .dashicons {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 18px;
    }

    .nexus-login-features strong {
        font-size: 13px;
    }

    .nexus-login-features small {
        font-size: 11px;
    }

    .nexus-login-main {
        padding: 34px 48px;
    }

    .login #login {
        width: min(100%, 520px);
        padding: 30px 42px 28px;
        border-radius: 24px;
    }

    .login h1 a {
        width: 58px;
        height: 58px;
        margin-bottom: 12px;
        border-radius: 18px;
    }

    .login h1 a::after {
        font-size: 32px;
    }

    .login h1::after {
        margin-top: 4px;
        font-size: 26px;
    }

    .login h1::before {
        transform: translateY(96px);
        font-size: 13px;
    }

    .login form {
        margin-top: 42px;
    }

    .login label {
        font-size: 13px;
    }

    .login form .input,
    .login input[type="text"],
    .login input[type="password"],
    .login .button.wp-hide-pw {
        min-height: 48px;
    }

    .login form .input,
    .login input[type="text"],
    .login input[type="password"] {
        font-size: 15px;
    }

    .login .forgetmenot {
        margin-top: 8px;
    }

    .login .submit {
        margin-top: 18px;
    }

    .wp-core-ui.login .button-primary {
        min-height: 50px;
        font-size: 15px;
    }

    .nexus-login-divider {
        gap: 12px;
        margin: 20px 0 12px;
        font-size: 13px;
    }

    .nexus-login-socials {
        gap: 8px;
    }

    .nexus-login-social {
        min-height: 46px;
        padding: 0 14px;
        border-radius: 11px;
    }

    .nexus-login-social span {
        width: 24px;
        height: 24px;
        font-size: 18px;
    }

    .nexus-login-social strong {
        font-size: 14px;
    }

    .nexus-login-secure-note {
        margin-top: 14px;
        font-size: 12px;
    }
}

/* Remove default WordPress guidance links/text from the Nexus login screen */
.login #nav,
.login #backtoblog,
.login .privacy-policy-page-link,
.login .language-switcher,
.login .wp-login-lost-password,
.login .wp-login-register {
    display: none !important;
}

body.login-action-login .login .message,
body.login-action-login .login .notice:not(#login_error) {
    display: none !important;
}

/* Nexus login overlap/alignment fix */
body.login.nexus-login-experience {
    overflow-x: hidden;
}

.nexus-login-main {
    display: grid;
    place-items: center;
}

.login #login {
    justify-self: center;
    align-self: center;
}

@media (min-width: 1181px) {
    .nexus-login-shell {
        grid-template-columns: 1fr 1fr;
    }

    .nexus-login-main {
        padding: 30px 42px;
    }

    .login #login {
        width: min(100%, 500px);
        margin-left: auto;
        margin-right: auto;
    }
}

.login h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 18px;
}

.login h1 a {
    order: 1;
}

.login h1::after {
    content: attr(data-nexus-title);
    order: 2;
    display: block;
    margin-top: 10px;
    color: #0f172a;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: -.035em;
    text-align: center;
}

.login h1::before {
    content: attr(data-nexus-subtitle);
    order: 3;
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 300;
    letter-spacing: .01em;
    text-align: center;
}

.login form {
    margin-top: 0 !important;
    clear: both;
}

.login form::after {
    content: "";
    display: table;
    clear: both;
}

.login .submit {
    float: none !important;
    clear: both;
    display: block;
    width: 100%;
}

.login .submit .button-primary,
.login #wp-submit {
    float: none !important;
    display: block;
    width: 100%;
}

.nexus-login-divider {
    clear: both;
    position: relative;
    z-index: 2;
    margin-top: 18px !important;
}

.nexus-login-socials,
.nexus-login-secure-note {
    position: relative;
    z-index: 2;
}

body.login.nexus-login-experience .message:not(#login_error),
body.login.nexus-login-experience .notice:not(#login_error),
body.login.nexus-login-experience .updated,
body.login.nexus-login-experience .success {
    display: none !important;
}

@media (min-width: 1181px) {
    .login h1 a {
        margin-bottom: 0;
    }

    .login h1::after {
        font-size: 25px;
        line-height: 1.15;
    }

    .login h1::before {
        font-size: 11px;
        font-weight: 300;
    }

    .login form {
        margin-top: 0 !important;
    }

    .login #login {
        padding-top: 26px;
        padding-bottom: 26px;
    }
}

@media (max-width: 640px) {
    .login h1::after {
        font-size: 24px;
    }

    .login h1::before {
        font-size: 11px;
    }
}

/* Nexus subtitle true position + right panel centering patch */
.login h1::before {
    transform: none !important;
    position: static !important;
    pointer-events: none;
}

@media (min-width: 1181px) {
    .nexus-login-main {
        display: grid !important;
        place-items: center !important;
        padding: 24px 42px !important;
    }

    .login #login {
        justify-self: center !important;
        align-self: center !important;
        transform: translate(clamp(-42px, -2.1vw, -24px), -14px);
    }

    .login h1 {
        margin-bottom: 18px !important;
    }

    .login h1::before {
        margin-top: 5px !important;
        font-size: 12px !important;
        line-height: 1.35 !important;
        font-weight: 300 !important;
        color: #64748b !important;
        letter-spacing: .005em !important;
    }
}

@media (max-width: 1180px) {
    .login h1::before {
        transform: none !important;
        position: static !important;
    }

    .login #login {
        transform: none !important;
    }
}

/* Nexus Login Experience Step 2 dynamic style layer */
body.login.nexus-login-experience {
    --nx-login-card-radius: 24px;
}

body.login.nexus-login-experience .login #login,
body.login.nexus-login-experience #login {
    border-radius: var(--nx-login-card-radius, 24px);
}

body.login.nexus-login-experience .nexus-login-mark,
body.login.nexus-login-experience .login h1 a,
body.login.nexus-login-experience #login h1 a {
    background: linear-gradient(135deg, #60a5fa 0%, var(--nx-login-primary) 48%, var(--nx-login-primary-2) 100%) !important;
}

body.login.nexus-login-experience .nexus-login-brand__line,
body.login.nexus-login-experience .wp-core-ui.login .button-primary,
body.login.nexus-login-experience #wp-submit,
.wp-core-ui.login.nexus-login-experience .button-primary {
    background: linear-gradient(135deg, var(--nx-login-primary), var(--nx-login-primary-2)) !important;
}

body.login.nexus-login-experience .nexus-login-brand {
    background:
        radial-gradient(circle at 12% 4%, color-mix(in srgb, var(--nx-login-primary) 30%, transparent), transparent 34%),
        radial-gradient(circle at 96% 42%, color-mix(in srgb, var(--nx-login-primary-2) 36%, transparent), transparent 32%),
        linear-gradient(145deg, #071225 0%, #111a5a 52%, #10125d 100%);
}

body.login.nexus-login-bg-light_split .nexus-login-brand {
    color: #0f172a;
    background:
        radial-gradient(circle at 8% 10%, rgba(37, 99, 235, .14), transparent 34%),
        radial-gradient(circle at 94% 42%, rgba(124, 58, 237, .14), transparent 32%),
        linear-gradient(145deg, #ffffff 0%, #eef2ff 100%);
}

body.login.nexus-login-bg-light_split .nexus-login-brand__title {
    color: #0f172a;
    text-shadow: none;
}

body.login.nexus-login-bg-light_split .nexus-login-brand__subtitle,
body.login.nexus-login-bg-light_split .nexus-login-brand__tagline,
body.login.nexus-login-bg-light_split .nexus-login-features strong,
body.login.nexus-login-bg-light_split .nexus-login-features small {
    color: #475569;
}

body.login.nexus-login-bg-light_split .nexus-login-features .dashicons {
    background: rgba(37, 99, 235, .10);
    color: var(--nx-login-primary);
}

body.login.nexus-login-bg-minimal_card .nexus-login-shell {
    grid-template-columns: 1fr;
}

body.login.nexus-login-bg-minimal_card .nexus-login-brand {
    display: none;
}

body.login.nexus-login-bg-minimal_card .nexus-login-main {
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, .12), transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, .12), transparent 34%),
        linear-gradient(135deg, #f8fafc, #eef2ff);
}

.nexus-login-mark--image {
    overflow: hidden;
    background: #fff !important;
}

.nexus-login-mark--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* V87 login settings patch: real title/subtitle nodes */
.login h1::before,
.login h1::after {
    content: none !important;
    display: none !important;
}

.login h1 .nexus-login-title {
    order: 2;
    display: block;
    margin-top: 10px;
    color: #0f172a;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: -.035em;
    text-align: center;
}

.login h1 .nexus-login-subtitle {
    order: 3;
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 300;
    letter-spacing: .01em;
    text-align: center;
}

@media (min-width: 1181px) {
    .login h1 .nexus-login-title {
        font-size: 25px;
        line-height: 1.15;
    }

    .login h1 .nexus-login-subtitle {
        font-size: 12px;
        font-weight: 300;
    }
}

@media (max-width: 640px) {
    .login h1 .nexus-login-title {
        font-size: 24px;
    }

    .login h1 .nexus-login-subtitle {
        font-size: 11px;
    }
}


/* V87 server-rendered login heading fix */
body.login.nexus-login-experience #login h1 {
    margin-bottom: 12px !important;
}

body.login.nexus-login-experience #login h1::before,
body.login.nexus-login-experience #login h1::after,
body.login.nexus-login-experience #login h1 .nexus-login-title,
body.login.nexus-login-experience #login h1 .nexus-login-subtitle {
    display: none !important;
    content: none !important;
}

body.login.nexus-login-experience .nexus-login-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 0 18px;
}

body.login.nexus-login-experience .nexus-login-heading .nexus-login-title {
    display: block;
    color: #0f172a;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -.035em;
}

body.login.nexus-login-experience .nexus-login-heading .nexus-login-subtitle {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 300;
    letter-spacing: .005em;
}

@media (max-width: 640px) {
    body.login.nexus-login-experience .nexus-login-heading .nexus-login-title {
        font-size: 24px;
    }

    body.login.nexus-login-experience .nexus-login-heading .nexus-login-subtitle {
        font-size: 11px;
    }
}

/* Google OAuth pending/approval notices */
body.login.nexus-login-experience .nexus-login-oauth-message {
    margin: 0 0 16px;
    padding: 13px 15px;
    border-radius: 14px;
    color: #1e293b;
    background: rgba(239, 246, 255, .92);
    border: 1px solid rgba(59, 130, 246, .16);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
    text-align: center;
}

body.login.nexus-login-experience .nexus-login-oauth-message--success {
    color: #065f46;
    background: rgba(236, 253, 245, .94);
    border-color: rgba(16, 185, 129, .18);
}

body.login.nexus-login-experience .nexus-login-oauth-message--warning {
    color: #92400e;
    background: rgba(255, 251, 235, .95);
    border-color: rgba(245, 158, 11, .20);
}
