body.body--auth:has(.login-landing) .app-shell--auth {
    max-width: none;
    margin: 0;
    padding: 0;
}

body.body--auth:has(.login-landing) .page--auth {
    width: 100%;
    padding: 0;
}

.login-landing {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 100px);
    padding: clamp(28px, 5vw, 72px);
}

.login-landing .integrated-card {
    width: 100%;
    max-width: 500px;
    background: rgba(15, 17, 23, 0.7) !important;
    backdrop-filter: blur(24px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(150%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 30px !important;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42) !important;
    padding: clamp(28px, 3.2vw, 42px) !important;
}

.login-card__header {
    text-align: left;
    margin-bottom: 28px;
}

.login-card__header h2 {
    margin: 0;
    font-size: clamp(1.7rem, 2.8vw, 2.1rem);
    line-height: 1.08;
}

.login-password-field {
    display: grid;
    gap: 8px;
}

.login-password-label {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
}

.login-password-wrap {
    position: relative;
}

.login-password-wrap input {
    padding-right: 46px;
}

.login-password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.66);
    transform: translateY(-50%);
    cursor: pointer;
    transition: color var(--transition);
}

.login-password-toggle:hover,
.login-password-toggle:focus-visible {
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    transform: translateY(-50%);
}

.login-password-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.login-password-toggle .password-eye-off {
    display: none;
}

.login-password-toggle.is-visible svg .password-eye-off {
    display: block;
}

.login-password-toggle.is-visible svg .password-eye {
    opacity: 0.45;
}

.login-forgot-link {
    width: fit-content;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    line-height: 1.25;
    text-decoration: none;
    transition: color var(--transition);
}

.login-forgot-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.login-submit {
    width: 100%;
}

.login-account-link {
    margin-top: 22px;
}

.login-account-link a {
    color: #ffffff;
    font-weight: 700;
}

.login-invite-note {
    margin-top: 12px;
}

@media (max-width: 640px) {
    .login-landing {
        min-height: auto;
        padding: 28px 20px 48px;
    }

    .login-forgot-link {
        font-size: 0.82rem;
    }
}
