:root {
    --bg: #f5f7fb;
    --panel: #fff;
    --border: #e5e9f0;
    --text: #0f172a;
    --muted: #64748b;
    --navy: #0b1f3a;
    --navy-2: #12294d;
    --blue: #2563eb;
    --blue-2: #1d4ed8;
    --blue-soft: #eff4ff;
    --green: #10b981;
    --red: #ef4444;
    --radius: 10px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, .08)
}

* {
    box-sizing: border-box
}

html {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg)
}

body {
    margin: 0;
    background: var(--bg)
}

button,
input {
    font: inherit
}

button {
    cursor: pointer
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase
}

.brand-mark {
    display: grid;
    grid-template-columns: repeat(3, 5px);
    align-items: end;
    gap: 3px;
    width: 27px;
    height: 27px;
    padding: 5px;
    border-radius: 8px;
    background: var(--blue)
}

.brand-mark span {
    display: block;
    border-radius: 6px;
    background: #fff
}

.brand-mark span:nth-child(1) {
    height: 8px
}

.brand-mark span:nth-child(2) {
    height: 16px
}

.brand-mark span:nth-child(3) {
    height: 11px
}

/* =========================================================
   AUTH · MISMO SISTEMA VISUAL QUE QUORLY ADMIN
   ========================================================= */
.auth-page {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --primary-soft: #eff4ff;
    --navy: #0b1f3a;
    --navy-soft: #12294d;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e5e9f0;
    --surface: #ffffff;
    --background: #f5f7fb;
    --danger: #ef4444;
    --success: #047857;
    --shadow: 0 24px 70px rgba(15, 23, 42, .14);
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
    font-size: 13px;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 12%, rgba(37, 99, 235, .11), transparent 25%),
        radial-gradient(circle at 92% 86%, rgba(96, 165, 250, .10), transparent 28%),
        var(--background);
}

.auth-page button,
.auth-page input {
    font: inherit
}

.auth-page button {
    cursor: pointer
}

.auth-page a {
    color: inherit
}

.auth-page .auth-shell {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 34px;
    width: auto
}

.auth-page .auth-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(1080px, 100%);
    min-height: 660px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, .92);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
    isolation: isolate;
}

.auth-page .form-side {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 0;
    padding: 42px 50px;
    background: radial-gradient(circle at 80% 12%, rgba(37, 99, 235, .055), transparent 30%), #fff
}

.auth-page .form-side--login {
    grid-column: 1
}

.auth-page .form-side--register {
    grid-column: 2
}

.auth-page .form-container {
    width: min(100%, 420px)
}

.auth-page .mobile-brand {
    display: none;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    text-decoration: none
}

.auth-page .mobile-brand>span:last-child,
.auth-page .brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.auth-page .mobile-brand strong,
.auth-page .brand-text strong {
    font-size: 15px
}

.auth-page .mobile-brand small {
    color: var(--muted);
    font-size: 11px
}

.auth-page .brand-logo {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 850;
    background: linear-gradient(145deg, var(--primary-light), var(--primary-dark));
    box-shadow: 0 10px 22px rgba(37, 99, 235, .25)
}

.auth-page .auth-heading {
    margin-bottom: 22px
}

.auth-page .auth-heading .eyebrow {
    display: inline-flex;
    margin: 0 0 13px;
    color: var(--primary);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.auth-page .auth-heading h1 {
    margin: 0;
    font-size: clamp(26px, 2.7vw, 34px);
    line-height: 1.07;
    letter-spacing: -.045em
}

.auth-page .auth-heading p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55
}

.auth-page .auth-form {
    display: grid;
    gap: 12px
}

.auth-page .field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.auth-page .field {
    display: grid;
    gap: 4px;
    margin: 0
}

.auth-page .field>span {
    display: block;
    margin: 0;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--muted)
}

.auth-page .field input {
    width: 100%;
    min-height: 36px;
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: 7px;
    font-size: 12.5px;
    outline: none;
    color: var(--text);
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease
}

.auth-page .field input::placeholder {
    color: #94a3b8
}

.auth-page .field input:hover {
    border-color: #cbd5e1
}

.auth-page .field input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
    background: #fff
}

.auth-page .password-field {
    position: relative
}

.auth-page .password-field input {
    padding-right: 70px
}

.auth-page .password-toggle {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 6px;
    padding: 5px 8px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 850;
    background: var(--primary-soft)
}

.auth-page .form-message {
    min-height: 16px;
    margin: 0;
    color: var(--danger);
    font-size: 11px;
    line-height: 1.4
}

.auth-page .form-message.success {
    color: var(--success)
}

.auth-page .auth-submit {
    min-height: 40px;
    margin-top: 4px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    box-shadow: 0 2px 8px rgba(37, 99, 235, .35);
    transition: transform .18s ease, box-shadow .18s ease
}

.auth-page .auth-submit:hover {
    transform: translateY(-1px);
    background: var(--primary-dark);
    box-shadow: 0 5px 14px rgba(37, 99, 235, .32)
}

.auth-page .auth-submit:active {
    transform: translateY(0)
}

.auth-page .auth-submit:disabled {
    opacity: .62;
    cursor: wait;
    transform: none
}

.auth-page .mobile-switch {
    display: none;
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 12px;
    text-align: center
}

.auth-page .mobile-switch a {
    color: var(--primary);
    font-size: 11px;
    font-weight: 750;
    text-decoration: none
}

.auth-page .visual-overlay {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 50%;
    display: flex;
    width: 50%;
    height: 100%;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 20% 12%, rgba(147, 197, 253, .34), transparent 30%), radial-gradient(circle at 85% 85%, rgba(59, 130, 246, .26), transparent 32%), linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 48%, var(--primary-dark) 100%);
    border-radius: 16px 0 0 16px
}

.auth-page .auth-card.is-register .visual-overlay {
    left: 0;
    border-radius: 0 16px 16px 0
}

.auth-page .visual-panel {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 38px
}

.auth-page .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none
}

.auth-page .visual-panel .brand-logo {
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .13);
    box-shadow: none;
    backdrop-filter: blur(14px)
}

.auth-page .brand-text small {
    color: rgba(255, 255, 255, .64);
    font-size: 11px
}

.auth-page .visual-copy {
    margin: auto 0;
    max-width: 500px
}

.auth-page .visual-copy .pill {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #bfdbfe;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    background: rgba(255, 255, 255, .07)
}

.auth-page .visual-copy h2 {
    margin: 0;
    font-size: clamp(30px, 3.6vw, 48px);
    line-height: 1.02;
    letter-spacing: -.055em
}

.auth-page .visual-copy p {
    margin: 21px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    line-height: 1.6
}

.auth-page .visual-actions {
    margin-top: 30px
}

.auth-page .overlay-toggle {
    display: inline-grid;
    min-width: 155px;
    min-height: 38px;
    padding: 0 18px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .30);
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    text-decoration: none;
    transition: background .18s ease, transform .18s ease
}

.auth-page .overlay-toggle:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-1px)
}

.auth-page .feature-list {
    display: grid;
    gap: 10px;
    margin-top: auto
}

.auth-page .feature {
    display: flex;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 10px;
    background: rgba(255, 255, 255, .065);
    backdrop-filter: blur(14px)
}

.auth-page .feature-icon {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    place-items: center;
    border-radius: 9px;
    color: #dbeafe;
    font-size: 13px;
    background: rgba(96, 165, 250, .18)
}

.auth-page .feature strong {
    display: block;
    margin-bottom: 2px;
    font-size: 12px
}

.auth-page .feature p {
    margin: 0;
    color: rgba(255, 255, 255, .59);
    font-size: 10px;
    line-height: 1.45
}

@media(max-width:920px) {
    .auth-page .auth-shell {
        padding: 22px
    }

    .auth-page .auth-card {
        display: block;
        min-height: 0;
        max-width: 620px;
        border-radius: 24px
    }

    .auth-page .visual-overlay {
        display: none
    }

    .auth-page .form-side {
        display: grid;
        min-height: 720px;
        padding: 42px 38px
    }

    .auth-page .mobile-brand,
    .auth-page .mobile-switch {
        display: flex
    }

    .auth-page .mobile-switch {
        justify-content: center
    }
}

@media(max-width:560px) {
    .auth-page .auth-shell {
        display: block;
        padding: 0;
        background: #fff
    }

    .auth-page .auth-card {
        min-height: 100vh;
        border: 0;
        border-radius: 0;
        box-shadow: none
    }

    .auth-page .form-side {
        min-height: 100vh;
        padding: 28px 20px 36px
    }

    .auth-page .field-grid {
        grid-template-columns: 1fr
    }

    .auth-page .auth-heading h1 {
        font-size: 30px
    }
}


.app-shell {
    display: grid;
    grid-template-columns: 210px 1fr;
    min-height: 100vh
}

.logo{
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), #60a5fa);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, .4);
}


.log-emp{
    margin: 0 0 2px;
    color: #8191a6;
    font-size: .68rem;
}


.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 24px 18px;
    background: var(--navy);
    color: #fff
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    text-decoration: none
}

.nav-list {
    display: grid;
    gap: 6px;
    margin-top: 38px
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 11px;
    border-radius: 9px;
    color: #93a4ba;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700
}

.nav-item.active {
    color: #fff;
    background: rgba(255, 255, 255, .09)
}

.nav-item em {
    margin-left: auto;
    font-size: .5rem;
    font-style: normal
}

.nav-item.disabled {
    pointer-events: none
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.sidebar-footer p {
    margin: 0 0 4px;
    color: #8191a6;
    font-size: .68rem
}

.sidebar-footer strong {
    display: block;
    font-size: .82rem
}

.text-button {
    padding: 8px 0;
    margin-top: 4px;
    border: 0;
    background: none;
    color: #fda4af;
    font-size: .74rem
}

.main-content {
    min-width: 0;
    padding: 28px 32px 42px
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px
}

.topbar h1 {
    margin: 0;
    font-size: clamp(1.55rem, 2.5vw, 2.4rem);
    letter-spacing: -.045em
}

.employee-chip {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 10px 6px 6px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff
}

.employee-chip strong,
.employee-chip span {
    display: block
}

.employee-chip strong {
    font-size: .75rem
}

.employee-chip span {
    font-size: .64rem;
    color: var(--muted)
}

.avatar {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
    font-weight: 900
}

.today-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 24px;
    padding: 22px 24px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    box-shadow: var(--shadow-md)
}

.status-pill {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    font-size: .65rem;
    font-weight: 800
}

.today-card p {
    margin: 8px 0 0;
    color: #b9c4d3;
    font-size: .78rem
}

.today-card h2 {
    margin: 7px 0 11px;
    font-size: clamp(1.65rem, 3.4vw, 2.7rem);
    letter-spacing: -.05em
}

.today-meta {
    display: flex;
    gap: 7px;
    flex-wrap: wrap
}

.today-meta span {
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    color: #d8e0ea;
    font-size: .68rem
}

.today-clock {
    font-size: 1.2rem;
    font-weight: 550
}

.schedule-section {
    margin-top: 28px
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px
}

.section-heading h2 {
    margin: 0;
    font-size: 1.35rem
}

.week-controls {
    display: flex;
    align-items: center;
    gap: 7px
}

.round {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff
}

.week-label {
    min-width: 165px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    font-weight: 500;
    font-size: .78rem
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(125px, 1fr));
    gap: 9px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 6px
}

.day-card {
    min-width: 125px;
    min-height: 165px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff
}

.day-card.is-today {
    border-color: #93c5fd;
    box-shadow: 0 6px 16px rgba(37, 99, 235, .08)
}

.day-card header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border)
}

.day-card header span {
    color: var(--muted);
    font-size: .87rem;
    font-weight: 500
}

.day-card header strong {
    font-size: 1rem;
    color: var(--muted)
}

.shift-block {
    display: flex;
    gap: 8px;
    margin-top: 13px
}

.shift-dot {
    flex: 0 0 7px;
    width: 7px;
    height: 100px;
    margin-top: 4px;
    /* border-radius: 50%; */
    border-radius: 10px;
    background: var(--shift-color)
}

.shift-block strong {
    font-size: .98rem;
    color: var(--muted);
    font-weight: 500;
}

.shift-block p {
    margin: 6px 0;
    font-size: .82rem;
    font-weight: 500
}

.shift-block small,
.rest-block small {
    color: var(--muted);
    font-size: .63rem
}

.rest-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 95px;
    color: var(--muted)
}

.rest-block span {
    font-size: .98rem;
    font-weight: 500
}

.rest-block small {
    margin-top: 4px
}

.schedule-state,
.empty-week {
    grid-column: 1/-1;
    padding: 28px;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    color: var(--muted)
}

.empty-week span {
    display: block;
    color: var(--blue);
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase
}

.empty-week strong {
    display: block;
    margin: 7px auto 4px;
    max-width: 520px;
    color: var(--text);
    font-size: .95rem
}

.empty-week p {
    margin: 0;
    font-size: .78rem
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin-top: 18px
}

.summary-card {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff
}

.summary-card span,
.summary-card small {
    display: block;
    color: var(--muted);
    font-size: .66rem
}

.summary-card strong {
    display: block;
    margin: 6px 0 3px;
    font-size: 1.25rem
}

.bottom-nav {
    display: none
}

@media(max-width:900px) {
    .schedule-grid {
        grid-template-columns: repeat(7, 145px)
    }

    .main-content {
        padding: 24px
    }
}

@media(max-width:700px) {
    body.app-page {
        padding-bottom: 72px
    }

    .app-shell {
        display: block
    }

    .sidebar {
        display: none
    }

    .main-content {
        padding: 20px 14px 24px
    }

    .topbar {
        align-items: flex-start
    }

    .topbar h1 {
        font-size: 1.6rem
    }

    .employee-chip>div:last-child {
        display: none
    }

    .today-card {
        margin-top: 18px;
        padding: 18px;
        border-radius: 13px
    }

    .today-card h2 {
        font-size: 2rem
    }

    .today-clock {
        font-size: 1rem
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column
    }

    .week-controls {
        width: 100%;
        justify-content: space-between
    }

    .week-label {
        flex: 1;
        min-width: 0
    }

    .schedule-grid {
        margin-right: -14px;
        padding-right: 14px;
        grid-template-columns: repeat(7, 135px)
    }

    .summary-grid {
        grid-template-columns: 1fr
    }

    .bottom-nav {
        position: fixed;
        z-index: 20;
        left: 10px;
        right: 10px;
        bottom: 8px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 6px;
        border-radius: 15px;
        background: rgba(11, 31, 58, .96);
        box-shadow: var(--shadow-md)
    }

    .bottom-nav a,
    .bottom-nav button {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        padding: 6px;
        border: 0;
        background: none;
        color: #91a1b7;
        text-decoration: none
    }

    .bottom-nav .active {
        color: #fff
    }

    .bottom-nav small {
        font-size: .58rem
    }

    .auth-page {
        padding: 14px
    }

    .auth-card {
        padding: 22px;
        border-radius: 14px
    }
}

/* === BLOCK A · shared Quorly identity === */
.brand .logo,.brand-logo,.mobile-brand .brand-logo{
    width:30px!important;height:30px!important;border-radius:9px!important;background:#2563eb!important;color:#fff!important;
    display:grid!important;place-items:center!important;font-size:.92rem!important;font-weight:800!important;box-shadow:0 4px 12px rgba(37,99,235,.35)!important
}
.sidebar-footer .text-button{
    width:100%;margin-top:14px;min-height:40px;padding:0 13px;border:1px solid #dbe2ea;border-radius:11px;
    display:flex;align-items:center;justify-content:center;gap:8px;background:#fff;color:#475569;font-weight:700;text-decoration:none;
    transition:background .15s ease,border-color .15s ease,color .15s ease
}
.sidebar-footer .text-button:hover{background:#f8fafc;border-color:#cbd5e1;color:#0f172a}
.sidebar-footer .text-button:before{content:"";width:16px;height:16px;background:no-repeat center/16px 16px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17l5-5-5-5'/%3E%3Cpath d='M15 12H3'/%3E%3Cpath d='M14 3h4a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3h-4'/%3E%3C/svg%3E")}

/* === BLOCK B · in-app notifications === */
.employee-toasts{position:fixed;right:18px;top:18px;z-index:1000;display:grid;gap:8px;width:min(360px,calc(100vw - 28px));pointer-events:none}
.employee-toast{opacity:0;transform:translateY(-6px);padding:12px 14px;border:1px solid #fecaca;border-radius:12px;background:#fff;color:#991b1b;box-shadow:0 14px 36px rgba(15,23,42,.14);font-size:.82rem;font-weight:650;transition:opacity .18s ease,transform .18s ease}
.employee-toast.is-visible{opacity:1;transform:none}
.employee-toast.success{border-color:#bbf7d0;color:#166534}

/* === BLOCK B · laptop responsive pass === */
@media (min-width:769px) and (max-width:1440px){
  .sidebar{width:220px}
  .main-content{padding:24px 28px 30px}
  .today-card{padding:22px 24px}
  .schedule-grid{gap:10px}
  .day-card{min-width:0}
  .summary-grid{gap:12px}
}
@media (min-width:769px) and (max-width:1180px){
  .sidebar{width:195px;padding-inline:14px}
  .main-content{padding:20px 20px 28px}
  .topbar{gap:12px}
  .schedule-grid{overflow-x:auto;grid-template-columns:repeat(7,minmax(128px,1fr));padding-bottom:6px}
}

/* === POLISH 2026-08-13 · canonical brand mark === */
.brand .logo,.brand-logo,.mobile-brand .brand-logo{
  font-size:0!important;color:transparent!important;background:#2563eb url('/logo-mark.svg') center/100% 100% no-repeat!important;
  box-shadow:0 4px 12px rgba(37,99,235,.35)!important;
}
