:root {
    --nexify-teal: #0b8f99;
    --nexify-teal-dark: #08727a;
    --nexify-orange: #ff6a00;
    --nexify-navy: #0b172d;
    --nexify-bg: #f5f8fb;
    --nexify-muted: #64748b;
    --nexify-line: #dbe7ef;
    --nexify-card: rgba(255, 255, 255, .92);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body.nexify-login-page {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--nexify-navy);
    background: var(--nexify-bg);
    overflow-x: hidden;
}

.login-bg-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(45px);
    opacity: .45;
    pointer-events: none;
    z-index: 0;
}
.orb-one { width: 320px; height: 320px; left: -130px; top: -80px; background: rgba(11, 143, 153, .26); }
.orb-two { width: 280px; height: 280px; left: 42%; bottom: -120px; background: rgba(255, 106, 0, .18); }
.orb-three { width: 240px; height: 240px; right: -80px; top: 100px; background: rgba(11, 23, 45, .15); }

.login-split-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 42px;
}
.login-panel { position: relative; min-height: 100vh; }
.login-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px 44px 54px;
    background:
        radial-gradient(circle at 16% 16%, rgba(11,143,153,.12), transparent 26%),
        radial-gradient(circle at 76% 84%, rgba(255,106,0,.10), transparent 28%),
        linear-gradient(135deg, #ffffff, #f2f8fa);
}
.login-form-panel::before {
    content: "";
    position: absolute;
    left: 34px;
    bottom: 42px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(11,143,153,.13);
    border-radius: 38px;
    transform: rotate(13deg);
    opacity: .62;
}
.login-form-panel::after {
    content: "";
    position: absolute;
    right: 36px;
    top: 38px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 16px solid rgba(255,106,0,.10);
}
.form-side-inner { width: min(100%, 470px); position: relative; z-index: 2; }

.brand-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(11,143,153,.12);
    box-shadow: 0 18px 40px rgba(11,143,153,.12);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.brand-fallback { display: none; color: var(--nexify-teal); font-size: 1.5rem; }
.brand-name { font-size: 1.17rem; font-weight: 950; letter-spacing: -.035em; color: var(--nexify-navy); line-height: 1.1; }
.brand-site { margin-top: 4px; color: var(--nexify-muted); font-size: .83rem; font-weight: 800; }

.login-card-glass {
    position: relative;
    border-radius: 30px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.96);
    background:
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,255,255,.88)),
        var(--nexify-card);
    box-shadow:
        0 30px 80px rgba(11, 23, 45, .14),
        0 1px 0 rgba(255,255,255,.8) inset;
    backdrop-filter: blur(16px);
    overflow: hidden;
}
.login-card-glass::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 62px;
    height: 62px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.08) 0 48%, rgba(11,143,153,.24) 49% 53%, rgba(255,106,0,.18) 54%),
        linear-gradient(225deg, rgba(255,255,255,.92), rgba(232,248,250,.78));
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    box-shadow: -10px 10px 22px rgba(11,23,45,.08);
    pointer-events: none;
}
.login-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.welcome-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(11,143,153,.09);
    color: var(--nexify-teal-dark);
    border: 1px solid rgba(11,143,153,.13);
    font-size: .76rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .045em;
}
.login-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.login-heading {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.65rem);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -.065em;
    color: var(--nexify-navy);
}
.login-lead {
    margin: 8px 0 0;
    color: var(--nexify-muted);
    font-size: .93rem;
    font-weight: 700;
}
.login-mini-illustration {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.55rem;
    background: linear-gradient(135deg, var(--nexify-teal), var(--nexify-orange));
    box-shadow: 0 18px 38px rgba(11,143,153,.22);
}

.login-alert {
    margin-bottom: 14px;
    border-radius: 16px;
    padding: 11px 13px;
    font-size: .86rem;
    font-weight: 800;
    border: 1px solid transparent;
}
.login-alert.success { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }
.login-alert.error { background: #fff1f2; color: #be123c; border-color: #fecdd3; }
.login-alert.info { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }

.form-group-modern { margin-bottom: 12px; }
.input-icon-wrap {
    position: relative;
    height: 56px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--nexify-line);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .045);
    transition: .2s ease;
}
.input-icon-wrap:focus-within {
    border-color: var(--nexify-teal);
    box-shadow: 0 0 0 5px rgba(11,143,153,.11), 0 18px 36px rgba(11,143,153,.08);
    transform: translateY(-1px);
}
.field-icon-badge {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: var(--nexify-teal-dark);
    font-size: 1.05rem;
    z-index: 2;
    pointer-events: none;
}
.input-icon-wrap .form-control {
    width: 100%;
    height: 54px;
    border: 0;
    outline: 0;
    border-radius: 18px;
    padding: 0 48px 0 52px;
    background: transparent;
    color: var(--nexify-navy);
    font-size: .96rem;
    font-weight: 800;
    box-shadow: none;
}
.input-icon-wrap .form-control::placeholder { color: #94a3b8; font-weight: 700; }
.input-icon-wrap .form-control:focus { box-shadow: none; background: transparent; }
.input-icon-wrap .form-control.is-invalid-soft { box-shadow: none; }
.input-icon-wrap:has(.is-invalid-soft) {
    border-color: #fb7185;
    box-shadow: 0 0 0 5px rgba(244, 63, 94, .10);
}
.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 13px;
    background: #f8fafc;
    color: #64748b;
    display: grid;
    place-items: center;
    transition: .2s ease;
    z-index: 3;
}
.password-toggle:hover { color: var(--nexify-teal); background: #edfafa; }
.invalid-feedback-custom { min-height: 16px; margin-top: 5px; color: #e11d48; font-size: .74rem; font-weight: 850; }

.form-row-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 2px 0 18px;
}
.remember-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #475569;
    font-weight: 850;
    font-size: .86rem;
}
.remember-check input { display: none; }
.check-ui {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 2px solid #cbd5e1;
    background: #fff;
    display: inline-block;
    position: relative;
    transition: .2s ease;
}
.remember-check input:checked + .check-ui { border-color: var(--nexify-teal); background: var(--nexify-teal); }
.remember-check input:checked + .check-ui::after {
    content: "";
    position: absolute;
    left: 4.5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.forgot-link {
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--nexify-teal);
    font-weight: 950;
    font-size: .86rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .18s ease;
}
.forgot-link:hover { color: var(--nexify-orange); }
.btn-login-primary {
    width: 100%;
    height: 55px;
    border: 0;
    border-radius: 18px;
    color: #fff;
    font-weight: 950;
    letter-spacing: .01em;
    background: linear-gradient(135deg, var(--nexify-teal) 0%, var(--nexify-teal-dark) 62%, #0b172d 100%);
    box-shadow: 0 18px 36px rgba(11,143,153,.24);
    transition: .2s ease;
}
.btn-login-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 44px rgba(11,143,153,.30); filter: saturate(1.08); }
.btn-login-primary:disabled { opacity: .78; transform: none; cursor: not-allowed; }
.quick-row { margin-top: 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.demo-login {
    border: 1px solid rgba(11,143,153,.14);
    background: rgba(255,255,255,.92);
    color: #334155;
    border-radius: 12px;
    padding: 8px 5px;
    font-size: .72rem;
    font-weight: 950;
    transition: .18s ease;
}
.demo-login:hover { background: var(--nexify-teal); border-color: var(--nexify-teal); color: #fff; transform: translateY(-1px); }
.small-note { margin-top: 10px; color: #64748b; font-size: .76rem; font-weight: 750; display: flex; gap: 6px; justify-content: center; align-items: center; }
.login-footer-note { margin: 16px 0 0; color: #94a3b8; font-size: .76rem; font-weight: 750; text-align: center; }

.login-slider-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(28px, 5vw, 70px);
    color: #fff;
    background:
        radial-gradient(circle at 76% 18%, rgba(255,106,0,.35), transparent 25%),
        radial-gradient(circle at 20% 88%, rgba(255,255,255,.16), transparent 26%),
        linear-gradient(135deg, #0b8f99 0%, #08727a 46%, #0b172d 100%);
}
.login-slider-panel::before {
    content: "";
    position: absolute;
    left: -48px;
    top: 0;
    bottom: 0;
    width: 94px;
    background:
        radial-gradient(circle at 0 7%, #f5f8fb 0 22px, transparent 23px),
        radial-gradient(circle at 0 21%, #f5f8fb 0 22px, transparent 23px),
        radial-gradient(circle at 0 35%, #f5f8fb 0 22px, transparent 23px),
        radial-gradient(circle at 0 49%, #f5f8fb 0 22px, transparent 23px),
        radial-gradient(circle at 0 63%, #f5f8fb 0 22px, transparent 23px),
        radial-gradient(circle at 0 77%, #f5f8fb 0 22px, transparent 23px),
        radial-gradient(circle at 0 91%, #f5f8fb 0 22px, transparent 23px);
    opacity: .92;
    z-index: 1;
    pointer-events: none;
}
.slider-pattern {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        radial-gradient(circle at 18% 20%, rgba(255,255,255,.58) 0 1px, transparent 2px),
        linear-gradient(135deg, rgba(255,255,255,.16), transparent);
    background-size: 28px 28px, auto;
}
.slider-card {
    width: min(100%, 590px);
    min-height: 392px;
    position: relative;
    z-index: 2;
    border-radius: 40px;
    padding: clamp(30px, 5vw, 46px);
    border: 1px solid rgba(255,255,255,.26);
    background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.09));
    box-shadow: 0 38px 100px rgba(11,23,45,.34), inset 0 1px 0 rgba(255,255,255,.35);
    backdrop-filter: blur(18px);
    overflow: hidden;
}
.slider-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 88px;
    height: 88px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.65), rgba(255,255,255,.12) 48%, rgba(255,106,0,.34) 49%, rgba(255,106,0,.16));
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    box-shadow: -14px -14px 30px rgba(11,23,45,.16);
}
.slider-kicker {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: .78rem;
    font-weight: 950;
    margin-bottom: 28px;
}
.feature-slide { display: none; animation: slideFade .55s ease; }
.feature-slide.active { display: block; }
@keyframes slideFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.slide-icon {
    width: 78px;
    height: 78px;
    border-radius: 27px;
    display: grid;
    place-items: center;
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: var(--nexify-teal-dark);
    background: linear-gradient(135deg, #fff, #e9fbfc);
    border: 1px solid rgba(255,255,255,.70);
    box-shadow: 0 22px 45px rgba(11,23,45,.20);
}
.feature-slide h2 { font-weight: 950; letter-spacing: -.055em; font-size: clamp(2rem, 4vw, 2.85rem); margin: 0 0 14px; }
.feature-slide p { color: rgba(255,255,255,.88); font-size: 1rem; line-height: 1.68; max-width: 500px; }
.slider-dots { position: absolute; left: clamp(30px, 5vw, 46px); bottom: clamp(24px, 4vw, 36px); display: flex; gap: 9px; z-index: 3; }
.slider-dots button { border: 0; width: 10px; height: 10px; border-radius: 99px; background: rgba(255,255,255,.42); transition: .22s ease; }
.slider-dots button.active { width: 40px; background: var(--nexify-orange); }

.system-version-bottom {
    position: fixed;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 8px 13px;
    color: #475569;
    background: rgba(255,255,255,.80);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 12px 30px rgba(11,23,45,.08);
    backdrop-filter: blur(12px);
    font-size: .75rem;
    font-weight: 950;
    white-space: nowrap;
}
.system-version-bottom i { color: var(--nexify-orange); }

.reset-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1055;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(11,23,45,.52);
    backdrop-filter: blur(8px);
}
.reset-modal-backdrop.show { display: flex; }
.reset-modal-card {
    width: min(100%, 430px);
    position: relative;
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(255,255,255,.92);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 35px 90px rgba(11,23,45,.28);
    animation: resetIn .22s ease;
}
@keyframes resetIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.reset-close { position: absolute; right: 18px; top: 18px; width: 38px; height: 38px; border: 0; border-radius: 13px; background: #f1f5f9; color: #475569; }
.reset-close:hover { background: #e2e8f0; color: var(--nexify-teal); }
.reset-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 20px; color: #fff; background: linear-gradient(135deg, var(--nexify-teal), var(--nexify-orange)); box-shadow: 0 18px 38px rgba(11,143,153,.22); margin-bottom: 16px; font-size: 1.4rem; }
.reset-modal-card h2 { margin: 0 0 8px; font-weight: 950; letter-spacing: -.04em; }
.reset-modal-card p { color: var(--nexify-muted); margin-bottom: 18px; line-height: 1.55; }
.reset-note { margin-top: 13px; color: #64748b; font-size: .78rem; display: flex; gap: 7px; line-height: 1.45; }
.temp-password-box { margin-top: 11px; padding: 11px 12px; border-radius: 14px; background: #0f172a; color: #fff; font-weight: 950; letter-spacing: .08em; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.temp-password-box button { border: 0; border-radius: 10px; background: rgba(255,255,255,.16); color: #fff; padding: 6px 9px; font-weight: 850; }

@media (max-width: 991.98px) {
    .login-split-shell { grid-template-columns: 1fr; padding-bottom: 58px; }
    .login-slider-panel { min-height: auto; padding: 20px; order: -1; }
    .login-slider-panel::before { display: none; }
    .slider-card { min-height: 250px; border-radius: 28px; padding: 23px; }
    .slider-kicker { margin-bottom: 15px; }
    .slide-icon { width: 56px; height: 56px; border-radius: 20px; font-size: 1.7rem; margin-bottom: 13px; }
    .feature-slide h2 { font-size: 1.55rem; }
    .feature-slide p { font-size: .9rem; line-height: 1.5; }
    .slider-dots { position: static; margin-top: 18px; }
    .login-form-panel { min-height: auto; padding: 24px 16px 32px; }
    .form-side-inner { width: min(100%, 500px); }
    .system-version-bottom { bottom: 10px; }
}
@media (max-width: 575.98px) {
    .brand-strip { margin-bottom: 14px; }
    .brand-mark { width: 52px; height: 52px; border-radius: 18px; }
    .login-card-glass { border-radius: 24px; padding: 20px; }
    .login-card-glass::before { width: 48px; height: 48px; }
    .quick-row { grid-template-columns: 1fr 1fr; }
    .form-row-actions { align-items: center; }
    .login-heading { font-size: 2rem; }
    .login-mini-illustration { display: none; }
    .input-icon-wrap { height: 52px; border-radius: 16px; }
    .input-icon-wrap .form-control { height: 50px; border-radius: 16px; font-size: .92rem; padding-left: 48px; }
    .field-icon-badge { left: 15px; }
    .password-toggle { width: 35px; height: 35px; border-radius: 12px; right: 8px; }
    .reset-modal-card { padding: 22px; border-radius: 24px; }
    .system-version-bottom { font-size: .68rem; padding: 7px 10px; }
}

/* v31: desktop single-screen layout + mobile slider below form */
@media (min-width: 992px) {
    html, body { height: 100%; }
    body.nexify-login-page {
        min-height: 100vh;
        height: 100vh;
        overflow: hidden;
    }
    .login-split-shell {
        height: 100vh;
        min-height: 100vh;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        padding-bottom: 0;
        overflow: hidden;
    }
    .login-panel {
        min-height: 100vh;
        height: 100vh;
        overflow: hidden;
    }
    .login-form-panel {
        padding: clamp(18px, 2.8vw, 34px) clamp(24px, 4vw, 46px) 48px;
    }
    .form-side-inner {
        max-height: calc(100vh - 76px);
    }
    .brand-strip {
        margin-bottom: clamp(10px, 1.6vh, 18px);
    }
    .brand-mark {
        width: clamp(46px, 5.4vh, 58px);
        height: clamp(46px, 5.4vh, 58px);
        border-radius: 18px;
    }
    .brand-name { font-size: clamp(1rem, 1.4vw, 1.17rem); }
    .brand-site { font-size: .78rem; }
    .login-card-glass {
        padding: clamp(20px, 2.7vw, 28px);
        border-radius: 28px;
    }
    .login-card-top { margin-bottom: 12px; }
    .login-title-row { margin-bottom: 12px; }
    .login-heading { font-size: clamp(2rem, 3.1vw, 2.55rem); }
    .login-lead { margin-top: 6px; font-size: .88rem; }
    .login-mini-illustration {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        border-radius: 18px;
    }
    .input-icon-wrap { height: 52px; border-radius: 16px; }
    .input-icon-wrap .form-control { height: 50px; border-radius: 16px; }
    .btn-login-primary { height: 52px; border-radius: 16px; }
    .quick-row { margin-top: 12px; }
    .small-note { margin-top: 8px; }
    .login-footer-note { margin-top: 12px; }

    .login-slider-panel {
        padding: clamp(28px, 4vw, 56px);
    }
    .slider-card {
        max-height: calc(100vh - 112px);
        min-height: min(390px, calc(100vh - 160px));
        border-radius: 38px;
        padding: clamp(28px, 4vw, 44px);
    }
    .slider-kicker { margin-bottom: clamp(18px, 3vh, 28px); }
    .slide-icon {
        width: clamp(64px, 8vh, 78px);
        height: clamp(64px, 8vh, 78px);
        margin-bottom: clamp(16px, 3vh, 24px);
    }
    .feature-slide h2 { font-size: clamp(2rem, 3.4vw, 2.85rem); }
    .feature-slide p { font-size: clamp(.92rem, 1.1vw, 1rem); line-height: 1.6; }
    .system-version-bottom {
        bottom: 10px;
        background: rgba(255,255,255,.88);
    }
}

@media (max-width: 991.98px) {
    body.nexify-login-page { min-height: 100%; overflow-x: hidden; overflow-y: auto; }
    .login-split-shell {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        padding-bottom: 58px;
    }
    .login-form-panel { order: 1; }
    .login-slider-panel {
        order: 2;
        min-height: auto;
        padding: 18px 16px 28px;
        margin-top: 0;
    }
    .login-slider-panel::before { display: none; }
    .slider-card {
        width: min(100%, 500px);
        min-height: 230px;
        border-radius: 26px;
        padding: 22px;
        margin: 0 auto;
    }
}

/* Live school-code lookup on login page */
.school-lookup-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 24px;
    margin-top: 7px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .01em;
    border: 1px solid transparent;
}
.school-lookup-status.d-none { display: none !important; }
.school-lookup-status.info,
.school-lookup-status.loading {
    color: #1d4ed8;
    background: #eff6ff;
    border-color: #bfdbfe;
}
.school-lookup-status.success {
    color: #047857;
    background: #ecfdf5;
    border-color: #a7f3d0;
}
.school-lookup-status.error {
    color: #be123c;
    background: #fff1f2;
    border-color: #fecdd3;
}
.school-code-found {
    border-color: #10b981 !important;
}
.brand-mark img {
    transition: opacity .18s ease, transform .18s ease;
}
.brand-name,
.brand-site {
    transition: color .18s ease;
}


/* V2: silent school lookup, school identity shown only in app title */
.school-lookup-status { display: none !important; }
.brand-name#loginSchoolName { font-size: clamp(1.08rem, 1.8vw, 1.38rem); line-height: 1.08; }
.brand-site#loginSchoolMeta { font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: var(--nexify-teal); }
.school-code-found { box-shadow: 0 0 0 .18rem rgba(16, 185, 129, .12) !important; }

/* V3: School-code branding lookup is silent. Never show progress/status below the input. */
#schoolLookupStatus,
.school-lookup-status,
[data-school-lookup-status] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}

#loginSchoolName.brand-name {
    font-size: clamp(1.08rem, 1.8vw, 1.42rem);
    line-height: 1.08;
}

#loginSchoolMeta.brand-site {
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--nexify-teal);
}
