        :root {
            --wit-yellow: #FFCB05;
            --wit-yellow-hover: #FFD42E;
            --wit-ink: #0B0B0D;
            --wit-ink-2: #131316;
            --wit-ink-3: #1C1C21;
            --wit-line-dark: rgba(255, 255, 255, 0.08);
            --wit-text: #17171A;
            --wit-muted: #6B7280;
            --wit-bg: #F7F8FA;
            --wit-white: #FFFFFF;
            --wit-border: #E7E8EC;
            --wit-soft: rgba(255, 203, 5, 0.10);
            --wit-shadow: 0 32px 80px rgba(11, 11, 13, 0.10);
            --wit-radius: 18px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'Inter', Arial, sans-serif;
            background: var(--wit-bg);
            color: var(--wit-text);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }


.otp-wrap{
    display:flex;
    justify-content:space-between;
    gap:10px;
}

.otp-box{
    width:100%;
    max-width:52px;
    height:56px;
    text-align:center;
    font-size:20px;
    font-weight:800;
    color:var(--text);
    border:1.5px solid var(--border);
    border-radius:14px;
    background:#FCFCFD;
    outline:none;
    transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.otp-box:focus{
    border-color:var(--yellow);
    background:#FFFFFF;
    box-shadow:0 0 0 4px rgba(255,203,5,.16);
}

.code-expire-box {
    width: 100%;
    min-height: 52px;
    margin: 12px 0 18px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-sizing: border-box;
}

.code-expire-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
}

.code-expire-time {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}
        .auth-shell {
            min-height: 100vh;
            display: grid;
            grid-template-columns: minmax(480px, 1.05fr) 1fr;
        }

        /* ============ PAINEL DA MARCA (ESCURO / PREMIUM) ============ */
        .brand-panel {
            position: relative;
            overflow: hidden;
            background:
                    radial-gradient(900px 500px at 85% -10%, rgba(255, 203, 5, 0.14), transparent 60%),
                    radial-gradient(700px 500px at -10% 110%, rgba(255, 203, 5, 0.08), transparent 55%),
                    linear-gradient(160deg, var(--wit-ink) 0%, var(--wit-ink-2) 100%);
            color: #F4F4F5;
            padding: 56px 64px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .brand-panel::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                    linear-gradient(var(--wit-line-dark) 1px, transparent 1px),
                    linear-gradient(90deg, var(--wit-line-dark) 1px, transparent 1px);
            background-size: 56px 56px;
            mask-image: radial-gradient(ellipse at 30% 40%, rgba(0,0,0,.5), transparent 75%);
            pointer-events: none;
        }

        .brand-top, .brand-main, .brand-footer { position: relative; z-index: 1; }

        .brand-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .brand-logo img {
            max-width: 160px;
            height: auto;
            display: block;
        }

        .env-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .10em;
            text-transform: uppercase;
            color: rgba(244,244,245,.72);
            border: 1px solid var(--wit-line-dark);
            background: rgba(255,255,255,.03);
            padding: 8px 14px;
            border-radius: 999px;
            white-space: nowrap;
        }

        .env-badge .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--wit-yellow);
            box-shadow: 0 0 0 4px rgba(255,203,5,.15);
        }

        .brand-main { max-width: 600px; }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 203, 5, 0.10);
            border: 1px solid rgba(255, 203, 5, 0.28);
            color: var(--wit-yellow);
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .brand-title {
            font-size: clamp(34px, 3.6vw, 52px);
            line-height: 1.05;
            font-weight: 900;
            letter-spacing: -0.04em;
            margin-bottom: 18px;
            color: #FFFFFF;
        }

        .brand-title em {
            font-style: normal;
            color: var(--wit-yellow);
        }

        .brand-subtitle {
            font-size: 16.5px;
            line-height: 1.7;
            color: rgba(244,244,245,.66);
            max-width: 520px;
        }

        .features {
            margin-top: 42px;
            display: grid;
            gap: 12px;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 18px 20px;
            border: 1px solid var(--wit-line-dark);
            border-radius: 16px;
            background: rgba(255,255,255,.025);
            backdrop-filter: blur(6px);
            transition: border-color .25s ease, background .25s ease, transform .25s ease;
        }

        .feature:hover {
            border-color: rgba(255, 203, 5, 0.30);
            background: rgba(255, 203, 5, 0.04);
            transform: translateX(4px);
        }

        .feature-icon {
            flex: 0 0 auto;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            background: rgba(255, 203, 5, 0.12);
            border: 1px solid rgba(255, 203, 5, 0.25);
            color: var(--wit-yellow);
        }

        .feature strong {
            display: block;
            font-size: 14.5px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 3px;
        }

        .feature span {
            font-size: 13.5px;
            line-height: 1.55;
            color: rgba(244,244,245,.58);
        }

        .brand-stats {
            margin-top: 40px;
            display: flex;
            gap: 36px;
            flex-wrap: wrap;
            padding-top: 28px;
            border-top: 1px solid var(--wit-line-dark);
        }

        .stat b {
            display: block;
            font-size: 22px;
            font-weight: 900;
            letter-spacing: -0.02em;
            color: var(--wit-yellow);
        }

        .stat small {
            font-size: 12px;
            color: rgba(244,244,245,.52);
            letter-spacing: .04em;
            text-transform: uppercase;
        }

        .brand-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 12.5px;
            color: rgba(244,244,245,.45);
            margin-top: 40px;
        }

        .brand-footer a {
            color: rgba(244,244,245,.65);
            text-decoration: none;
            margin-left: 18px;
            transition: color .2s;
        }

        .brand-footer a:hover { color: var(--wit-yellow); }

        /* ============ PAINEL DO FORMULÁRIO ============ */
        .auth-panel {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 28px;
        }

        .login-card {
            width: 100%;
            max-width: 460px;
            background: var(--wit-white);
            border: 1px solid var(--wit-border);
            border-radius: 24px;
            padding: 44px 40px;
            box-shadow: var(--wit-shadow);
            animation: rise .5s ease both;
        }

        @keyframes rise {
            from { opacity: 0; transform: translateY(14px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .secure-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--wit-soft);
            border: 1px solid rgba(255, 203, 5, 0.35);
            color: #8a6d00;
            border-radius: 999px;
            padding: 7px 13px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .10em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .card-head { margin-bottom: 28px; }

        .card-head h1 {
            font-size: 28px;
            line-height: 1.15;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: var(--wit-text);
            margin-bottom: 8px;
        }

        .card-head p {
            font-size: 14.5px;
            line-height: 1.6;
            color: var(--wit-muted);
        }

        .error {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            background: #FEF2F2;
            border: 1px solid #FECACA;
            color: #B91C1C;
            padding: 13px 15px;
            border-radius: 12px;
            margin-bottom: 20px;
            font-size: 13.5px;
            line-height: 1.5;
        }

        .field { margin-bottom: 18px; }

        .field label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            font-size: 13.5px;
            font-weight: 700;
            color: var(--wit-text);
        }

        .input-wrap { position: relative; }

        .input-wrap .icon-left {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #9CA3AF;
            pointer-events: none;
            display: flex;
        }

        .field input {
            width: 100%;
            border: 1.5px solid var(--wit-border);
            border-radius: 13px;
            padding: 14px 46px 14px 44px;
            font-size: 14.5px;
            font-family: inherit;
            color: var(--wit-text);
            outline: none;
            background: #FCFCFD;
            transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
        }

        .field input::placeholder { color: #A6AAB3; }

        .field input:focus {
            border-color: var(--wit-yellow);
            background: #FFFFFF;
            box-shadow: 0 0 0 4px rgba(255, 203, 5, 0.18);
        }

        .toggle-pass {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: 0;
            cursor: pointer;
            color: #9CA3AF;
            display: flex;
            padding: 6px;
            border-radius: 8px;
            transition: color .2s, background .2s;
        }

        .toggle-pass:hover { color: var(--wit-text); background: #F1F2F4; }

        .options {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin: 6px 0 24px;
            font-size: 13.5px;
        }

        .remember {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--wit-muted);
            cursor: pointer;
            user-select: none;
        }

        .remember input { accent-color: var(--wit-yellow); width: 16px; height: 16px; cursor: pointer; }

        .forgot {
            color: var(--wit-text);
            font-weight: 700;
            text-decoration: none;
            border-bottom: 1.5px solid var(--wit-yellow);
            padding-bottom: 1px;
            transition: color .2s;
        }

        .forgot:hover { color: #8a6d00; }

        .btn {
            width: 100%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 0;
            background: var(--wit-yellow);
            color: var(--wit-ink);
            padding: 15px 18px;
            border-radius: 13px;
            font-size: 15px;
            font-family: inherit;
            font-weight: 800;
            letter-spacing: .01em;
            cursor: pointer;
            transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
            box-shadow: 0 12px 26px rgba(255, 203, 5, 0.32);
        }

        .btn:hover {
            background: var(--wit-yellow-hover);
            transform: translateY(-1px);
            box-shadow: 0 16px 32px rgba(255, 203, 5, 0.40);
        }

        .btn:active { transform: translateY(0); }

        .btn svg { transition: transform .2s ease; }
        .btn:hover svg { transform: translateX(3px); }

        .divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 26px 0 0;
            color: var(--wit-muted);
            font-size: 12px;
        }

        .divider::before, .divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background: var(--wit-border);
        }

        .secure-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 14px;
            font-size: 12.5px;
            color: var(--wit-muted);
        }

        .secure-note svg { color: #16A34A; }

        .card-foot {
            margin-top: 22px;
            padding-top: 20px;
            border-top: 1px solid var(--wit-border);
            text-align: center;
            font-size: 13px;
            color: var(--wit-muted);
        }

        .card-foot a {
            color: var(--wit-text);
            font-weight: 700;
            text-decoration: none;
            border-bottom: 1.5px solid var(--wit-yellow);
            padding-bottom: 1px;
        }

        /* ============ RESPONSIVO ============ */
        @media (max-width: 1024px) {
            .auth-shell { grid-template-columns: 1fr; }
            .brand-panel { padding: 32px 28px 28px; min-height: auto; }
            .features, .brand-stats { display: none; }
            .brand-main { margin: 28px 0; }
            .brand-footer { margin-top: 24px; }
            .auth-panel { padding: 24px 18px 40px; }
        }

        @media (max-width: 520px) {
            .login-card { padding: 30px 22px; border-radius: 20px; }
            .card-head h1 { font-size: 24px; }
            .options { flex-direction: column; align-items: flex-start; gap: 10px; }
        }