:root {
    --doni-blue: #2563EB;
    --doni-green: #22C55E;
    --doni-dark: #0F172A;
    --doni-light: #F8FAFC;
    --doni-sky: #38BDF8;
    --doni-amber: #F59E0B;
    --doni-rose: #F43F5E;
    --doni-slate: #64748B;
}

body {
    background: var(--doni-light);
    color: var(--doni-dark);
}

.doni-surface {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
}

.doni-nav {
    border-bottom: 1px solid #e2e8f0;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(8px);
}

.doni-logo {
    display: block;
    width: auto;
    object-fit: contain;
}

.doni-logo-header {
    height: 40px;
}

.doni-logo-footer {
    height: 36px;
}

.doni-logo-auth {
    height: 48px;
}

.doni-image-slot {
    border: 1px dashed #94a3b8;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 0.25rem;
}

.doni-image-slot img {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    object-fit: cover;
}

.doni-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 9999px;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.doni-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--doni-slate);
}

.doni-legal {
    line-height: 1.7;
}

.doni-legal h2,
.doni-legal h3 {
    color: var(--doni-dark);
}

.doni-muted {
    color: var(--doni-slate);
}

.doni-auth-shell {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .doni-auth-shell {
        grid-template-columns: minmax(0, 1fr) 520px;
        align-items: stretch;
    }
}
