html,
body {
    min-height: 100%;
    color-scheme: light;
}

body {
    margin: 0;
    font-family: var(--font-ui);
    background:
        radial-gradient(circle at top left, rgba(21, 94, 239, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(15, 159, 140, 0.08), transparent 22%),
        var(--bg-app);
    color: #102136;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
    color-scheme: light;
}

button {
    appearance: none;
    -webkit-appearance: none;
}
