:root {
    --brand: #0b9a6c;
    --brand-dark: #087554;
    --ink: #0f172a;
    --muted: #64748b;
    --surface: #f7fafc;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top right, #dcfce7 0%, #f8fafc 45%, #eef2ff 100%);
}

.auth-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0;
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

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

.sidebar-link.active {
    background: #e2f9f1;
    color: var(--brand-dark);
}
