@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');
body{
    font-family: "Arimo", sans-serif;
}

html:not(.dark) .bg-app {
    background-color: #EEF2F9 !important;
}

html.dark .bg-app {
    background-color: #0D1117 !important;
}

html:not(.dark) .card-bg {
    background-color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(209, 218, 235, 0.90);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-radius: 20px;
}

html.dark .card-bg {
    background-color: rgba(20, 27, 45, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

html:not(.dark) .c-primary {
    color: #0F172A !important;
}

html.dark .c-primary {
    color: #E2E8F0 !important;
}

html:not(.dark) .c-muted {
    color: #64748B !important;
}

html.dark .c-muted {
    color: #8892A4 !important;
}

.field-label {
    font-size: 11px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 6px;
}