@font-face {
    font-family: "Anta";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src:
        url("./fonts/Anta-Regular.woff2") format("woff2"),
        url("./fonts/Anta-Regular.ttf") format("truetype");
}

:root {
    --bg: #16181c;
    --bg-deep: #101318;
    --bg-core: #05070a;
    --panel: rgba(15, 18, 22, 0.2);
    --panel-strong: rgba(21, 26, 31, 0.36);
    --border: rgba(245, 246, 248, 0.08);
    --border-strong: rgba(127, 191, 127, 0.26);
    --text: #f5f6f8;
    --muted: rgba(188, 197, 209, 0.82);
    --accent: #4d8d5e;
    --accent-bright: #7fbf7f;
    --accent-punch: #ffbe55;
    --accent-soft: #f2d06b;
    --danger: #ff7e8a;
    --shadow: 0 32px 120px rgba(3, 7, 12, 0.5);
    --radius: 24px;
    --go-tilt-x: 0deg;
    --go-tilt-y: 0deg;
    --go-panel-shift-x: 0px;
    --go-panel-shift-y: 0px;
    --go-grid-shift-x: 0px;
    --go-grid-shift-y: 0px;
    --go-scroll-shift: 0px;
    --go-highlight-x: 50%;
    --go-highlight-y: 42%;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    min-height: 100%;
}

body.go-body {
    margin: 0;
    overflow: hidden;
    overscroll-behavior: none;
    background:
        radial-gradient(circle at 18% 16%, rgba(127, 191, 127, 0.18), transparent 28%),
        radial-gradient(circle at 84% 14%, rgba(255, 190, 85, 0.16), transparent 24%),
        radial-gradient(circle at 72% 86%, rgba(242, 208, 107, 0.08), transparent 22%),
        linear-gradient(180deg, #171b20 0%, var(--bg) 45%, var(--bg-core) 100%);
    color: var(--text);
    font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
}

.go-body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.05), transparent 22%),
        radial-gradient(circle at 78% 76%, rgba(127, 191, 127, 0.08), transparent 24%);
    opacity: 0.85;
    pointer-events: none;
}

.go-body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 0%, rgba(5, 7, 10, 0.22) 52%, rgba(5, 7, 10, 0.72) 100%);
    pointer-events: none;
}

.go-login-shell {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
}

.go-login-shell::before,
.go-login-shell::after {
    display: none;
}

.go-scene-canvas,
.go-scene-grid,
.go-scene-vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.go-scene-canvas {
    z-index: 0;
    width: 100%;
    height: 100%;
}

.go-scene-grid {
    inset: -12%;
    z-index: 1;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(159, 167, 178, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(159, 167, 178, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    background-position: 0 0;
    filter: blur(0.2px);
    transform:
        perspective(1500px)
        rotateX(74deg)
        translate3d(var(--go-grid-shift-x), calc(32px + var(--go-grid-shift-y) - var(--go-scroll-shift)), 0)
        scale(1.76);
    transform-origin: center 78%;
    mask-image: radial-gradient(circle at 50% 68%, rgba(0, 0, 0, 0.96) 10%, rgba(0, 0, 0, 0.72) 40%, transparent 80%);
    animation: go-grid-drift 26s linear infinite;
}

.go-scene-vignette {
    z-index: 2;
    background:
        radial-gradient(circle at center, transparent 0%, rgba(5, 7, 10, 0.08) 36%, rgba(5, 7, 10, 0.62) 100%),
        linear-gradient(180deg, rgba(9, 12, 16, 0.12) 0%, rgba(5, 7, 10, 0.34) 100%);
}

.go-login-stage {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: clamp(24px, 5vw, 60px);
}

.go-login-card {
    position: relative;
    width: min(100%, 42rem);
    border-radius: 28px;
    overflow: hidden;
    transform:
        perspective(1800px)
        translate3d(var(--go-panel-shift-x), var(--go-panel-shift-y), 0)
        rotateX(var(--go-tilt-y))
        rotateY(var(--go-tilt-x));
    transform-style: preserve-3d;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.go-login-card::before {
    content: none;
}

.go-login-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: rgba(14, 17, 23, 0.10);
    box-shadow:
        inset 0 0 0 1px rgba(245, 246, 248, 0.045),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px) saturate(115%);
    -webkit-backdrop-filter: blur(16px) saturate(115%);
}

.go-login-panel {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 5vw, 3.4rem);
    text-align: center;
}

.go-login-panel::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.025), transparent 30%);
    pointer-events: none;
}

.go-wordmark {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0;
    overflow: hidden;
    font-family: "Anta", sans-serif;
    font-size: clamp(3.5rem, 12vw, 6.4rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.03em;
    text-shadow: 0 0 28px rgba(127, 191, 127, 0.14), 0 0 12px rgba(245, 246, 248, 0.1);
}

.go-wordmark > span {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.go-wordmark > span::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    z-index: 2;
    color: transparent;
    background-image: linear-gradient(
        110deg,
        transparent 24%,
        rgba(255, 255, 255, 0.9) 46%,
        rgba(255, 190, 85, 0.72) 54%,
        transparent 76%
    );
    background-position: 180% 0;
    background-repeat: no-repeat;
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: go-wordmark-shine 4.8s ease-in-out infinite;
    pointer-events: none;
}

.go-wordmark-trace {
    color: rgba(245, 246, 248, 0.98);
}

.go-wordmark-y {
    color: var(--accent-punch);
    text-shadow: 0 0 24px rgba(255, 190, 85, 0.32);
}

.go-copy,
.sidebar-user span,
.conversation-meta,
.empty-state {
    color: var(--muted);
}

.go-copy {
    max-width: 32rem;
    margin: 1.2rem auto 1.9rem;
    font-size: clamp(1rem, 2.4vw, 1.08rem);
    line-height: 1.72;
}

.go-login-notice {
    max-width: 32rem;
    margin: -0.25rem auto 1.4rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 190, 85, 0.12);
    border: 1px solid rgba(255, 190, 85, 0.3);
    color: rgba(255, 239, 211, 0.96);
    line-height: 1.55;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.google-button,
.ghost-button,
.logout-button,
.send-button {
    border: 0;
    cursor: pointer;
    font: inherit;
    transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.google-button,
.send-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(77, 141, 94, 0.3), rgba(255, 190, 85, 0.22));
    color: var(--text);
    text-decoration: none;
    border: 1px solid rgba(127, 191, 127, 0.32);
    box-shadow: 0 18px 40px rgba(12, 16, 23, 0.28);
}

.google-button::before,
.send-button::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
    opacity: 0.92;
}

.google-button:hover,
.ghost-button:hover,
.logout-button:hover,
.send-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 46px rgba(12, 16, 23, 0.34);
}

.google-button:focus-visible,
.ghost-button:focus-visible,
.logout-button:focus-visible,
.send-button:focus-visible {
    outline: 2px solid rgba(127, 191, 127, 0.55);
    outline-offset: 3px;
}

.google-button span,
.send-button span {
    position: relative;
    z-index: 1;
}

.google-mark {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(245, 246, 248, 0.14);
    font-weight: 700;
    color: rgba(245, 246, 248, 0.96);
    box-shadow: inset 0 0 0 1px rgba(245, 246, 248, 0.08);
}

.go-sidebar,
.activity-panel,
.composer-shell,
.account-drawer,
.transcript-shell,
.panel-block,
.composer-box {
    backdrop-filter: blur(18px);
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.brand-block h1,
.go-topbar h2 {
    margin: 0;
    font-family: "Anta", sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

@keyframes go-grid-drift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 72px;
    }
}

@keyframes go-wordmark-shine {
    0% {
        opacity: 0;
        background-position: -140% 0;
    }

    12% {
        opacity: 0.88;
    }

    38% {
        opacity: 1;
        background-position: 140% 0;
    }

    50%,
    100% {
        opacity: 0;
        background-position: 140% 0;
    }
}

@media (max-width: 720px) {
    .go-scene-grid {
        transform:
            perspective(1300px)
            rotateX(76deg)
            translate3d(var(--go-grid-shift-x), calc(18px + var(--go-grid-shift-y) - var(--go-scroll-shift)), 0)
            scale(1.92);
        opacity: 0.42;
    }

    .go-scene-vignette {
        background:
            radial-gradient(circle at center, transparent 0%, rgba(5, 7, 10, 0.04) 36%, rgba(5, 7, 10, 0.38) 100%),
            linear-gradient(180deg, rgba(9, 12, 16, 0.06) 0%, rgba(5, 7, 10, 0.18) 100%);
    }

    .go-body::after {
        background:
            radial-gradient(circle at center, transparent 0%, rgba(5, 7, 10, 0.12) 52%, rgba(5, 7, 10, 0.48) 100%);
    }

    .go-login-card {
        border-radius: 24px;
    }

    .go-login-panel {
        padding: 1.7rem 1.35rem 1.8rem;
    }

    .go-copy {
        margin-bottom: 1.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .go-scene-grid,
    .go-wordmark > span::after,
    .google-button,
    .ghost-button,
    .logout-button,
    .send-button {
        animation: none !important;
        transition: none !important;
    }

    .go-login-card {
        transform: none;
    }
}

.go-app {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr) 320px;
    gap: 18px;
    min-height: 100vh;
    padding: 18px;
}

.go-sidebar,
.account-drawer {
    border-radius: var(--radius);
    padding: 20px;
}

.brand-block {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(159, 167, 178, 0.12);
}

.brand-block h1 {
    font-size: 2.2rem;
}

.sidebar-user {
    margin: 18px 0 0;
    font-size: 0.96rem;
}

.sidebar-user span {
    display: block;
    margin-top: 4px;
    font-size: 0.84rem;
}

.conversation-toolbar {
    display: flex;
    gap: 10px;
    margin: 18px 0;
}

.ghost-button,
.logout-button,
.upload-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(245, 246, 248, 0.05);
    color: var(--text);
    border: 1px solid rgba(159, 167, 178, 0.14);
}

.ghost-button.small {
    padding: 8px 12px;
    font-size: 0.84rem;
}

.logout-button {
    width: 100%;
    margin-top: 18px;
}

.conversation-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: calc(100vh - 250px);
    overflow: auto;
}

.conversation-item {
    width: 100%;
    text-align: left;
    border: 1px solid transparent;
    border-radius: 18px;
    padding: 14px;
    background: rgba(245, 246, 248, 0.04);
    color: var(--text);
    cursor: pointer;
}

.conversation-item.active {
    border-color: var(--border-strong);
    background: rgba(77, 141, 94, 0.16);
}

.conversation-item h3 {
    margin: 0 0 6px;
    font-size: 0.98rem;
}

.conversation-meta {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
}

.go-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.go-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px;
    border-radius: var(--radius);
    background: var(--panel-strong);
    border: 1px solid rgba(127, 191, 127, 0.18);
    box-shadow: var(--shadow);
}

.go-topbar h2 {
    font-size: 1.8rem;
}

.status-strip {
    display: flex;
    gap: 10px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(77, 141, 94, 0.14);
    color: var(--accent);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.status-pill.alt {
    background: rgba(255, 190, 85, 0.14);
    color: var(--accent-b);
}

.transcript-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius);
}

.transcript {
    min-height: 50vh;
    max-height: calc(100vh - 360px);
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 8px;
}

.message-card {
    border-radius: 22px;
    padding: 18px;
    background: rgba(245, 246, 248, 0.04);
    border: 1px solid rgba(159, 167, 178, 0.14);
}

.message-card.user {
    background: rgba(255, 190, 85, 0.12);
}

.message-card.assistant {
    background: rgba(77, 141, 94, 0.14);
}

.message-role {
    margin: 0 0 10px;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.message-body {
    margin: 0;
    white-space: pre-wrap;
    line-height: 1.7;
}

.activity-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.panel-block {
    border-radius: 22px;
    padding: 14px;
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.panel-head h3 {
    margin: 0;
    font-size: 0.98rem;
}

.panel-scroll,
.account-output {
    max-height: 18rem;
    overflow: auto;
    white-space: pre-wrap;
    line-height: 1.6;
}

.composer-shell {
    border-radius: var(--radius);
    padding: 16px;
}

.composer-controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.composer-controls label,
.toggle-label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.84rem;
}

.composer-controls select,
.composer-box textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(159, 167, 178, 0.16);
    background: rgba(22, 24, 28, 0.56);
    color: var(--text);
    font: inherit;
}

.composer-controls select {
    min-width: 180px;
    padding: 10px 12px;
}

.composer-box {
    border-radius: 20px;
    padding: 14px;
}

.composer-box textarea {
    min-height: 140px;
    padding: 14px;
    resize: vertical;
}

.composer-footer {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 12px;
}

.upload-chip input {
    display: none;
}

.upload-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.upload-item {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(245, 246, 248, 0.06);
    color: var(--text);
    font-size: 0.82rem;
}

.pending-card {
    border-radius: 18px;
    padding: 12px;
    background: rgba(245, 246, 248, 0.04);
    border: 1px solid rgba(159, 167, 178, 0.14);
    margin-bottom: 12px;
}

.pending-card label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
}

.pending-card input,
.pending-card select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(159, 167, 178, 0.16);
    background: rgba(22, 24, 28, 0.48);
    color: var(--text);
    margin-top: 6px;
}

.pending-card button {
    margin-top: 10px;
    width: 100%;
}

.account-drawer {
    position: relative;
}

.account-output {
    margin: 0;
    font-size: 0.82rem;
}

@media (max-width: 1280px) {
    .go-app {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .account-drawer {
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {
    .go-app {
        grid-template-columns: 1fr;
    }

    .transcript-shell {
        grid-template-columns: 1fr;
    }

    .conversation-list {
        max-height: none;
    }
}

/* NalaAI standalone login parity with the backoffice screen. */
body.go-login-body {
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background: #00133A !important;
    color: #ffffff;
    font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
}

body.go-login-body::before,
body.go-login-body::after {
    content: none;
}

.go-login-stage-backoffice {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.go-login-panel-backoffice {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@keyframes go-login-nala-logo-pulse {
    0%,
    100% {
        transform: scale(1);
        filter:
            drop-shadow(0 16px 30px rgba(2, 24, 73, 0.22))
            drop-shadow(0 0 0 rgba(42, 98, 255, 0))
            drop-shadow(0 0 0 rgba(139, 91, 253, 0));
    }

    50% {
        transform: scale(1.028);
        filter:
            drop-shadow(0 20px 36px rgba(2, 24, 73, 0.26))
            drop-shadow(0 0 24px rgba(42, 98, 255, 0.32))
            drop-shadow(0 0 42px rgba(139, 91, 253, 0.24));
    }
}

.go-login-nala-logo {
    width: min(11.82rem, 46.5vw);
    height: auto;
    transform-origin: center center;
    animation: go-login-nala-logo-pulse 3.8s ease-in-out infinite;
    will-change: transform, filter;
}

.google-button-backoffice {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.56rem;
    min-height: 2.75rem;
    padding: 0.65rem 1.1rem;
    border-radius: 0.42rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(180deg, #fbfcfe 0%, #edf2f8 100%);
    color: #10203c;
    text-decoration: none;
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition:
        transform 0.22s ease,
        box-shadow 0.26s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.google-button-backoffice::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -2;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(42, 98, 255, 0.42) 0%, rgba(191, 219, 254, 0.26) 46%, rgba(139, 91, 253, 0.28) 100%);
    opacity: 0.72;
}

.google-button-backoffice::after {
    content: "";
    position: absolute;
    top: -95%;
    left: -42%;
    width: 36%;
    height: 290%;
    z-index: -1;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.9) 50%, transparent 100%);
    transform: rotate(18deg);
    opacity: 0;
    transition: left 0.55s ease, opacity 0.28s ease;
}

.google-button-backoffice:hover {
    border-color: rgba(191, 219, 254, 0.96);
    background: linear-gradient(180deg, #ffffff 0%, #eff5ff 100%);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(191, 219, 254, 0.16),
        0 0 26px rgba(42, 98, 255, 0.2),
        0 0 40px rgba(139, 91, 253, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: translateY(-2px) scale(1.012);
}

.google-button-backoffice:hover::after {
    left: 118%;
    opacity: 0.62;
}

.google-button-backoffice:focus-visible {
    outline: none;
    border-color: rgba(191, 219, 254, 0.98);
    box-shadow:
        0 0 0 4px rgba(191, 219, 254, 0.22),
        0 20px 40px rgba(0, 0, 0, 0.24),
        0 0 28px rgba(42, 98, 255, 0.18);
}

.go-login-panel-backoffice .google-mark {
    display: inline-flex;
    width: 1.15rem;
    height: 1.15rem;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: transform 0.22s ease;
}

.go-login-panel-backoffice .google-mark .google-mark-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.google-button-backoffice:hover .google-mark {
    transform: scale(1.07) rotate(-4deg);
}

.go-login-cta-copy {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1;
    white-space: nowrap;
}

.go-login-cta-nala {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 1;
}

.go-login-cta-nala-wordmark {
    display: block;
    width: 2.78rem;
    height: auto;
    position: relative;
    top: 2px;
    flex: 0 0 auto;
    transition: transform 0.22s ease;
}

.google-button-backoffice:hover .go-login-cta-nala-wordmark {
    transform: translateX(1px);
}

.go-login-panel-backoffice .go-login-notice {
    max-width: 28rem;
    margin: 0;
    border-radius: 0.7rem;
    border: 1px solid rgba(252, 165, 165, 0.72);
    background: #fef2f2;
    padding: 0.85rem 1rem;
    color: #991b1b;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 640px) {
    .go-login-panel-backoffice {
        gap: 1.75rem;
    }

    .go-login-nala-logo {
        width: min(10.8rem, 45vw);
    }

    .google-button-backoffice {
        gap: 0.52rem;
        padding: 0.66rem 0.95rem;
    }

    .go-login-cta-copy {
        font-size: 0.95rem;
    }

    .go-login-cta-nala-wordmark {
        width: 2.38rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .go-login-nala-logo {
        animation: none;
        filter: drop-shadow(0 16px 30px rgba(2, 24, 73, 0.22));
    }
}
