:root {
    --bg: #ffffff;
    --fg: #1d1d1d;
    --accent_bg: #fa5040;
    --accent_fg: #ffffff;
}

@media (prefers-color-scheme: dark) {
    :root {
        --fg: #ffffff;
        --bg: #1d1d1d;
        --accent_bg: #fa5040;
        --accent_fg: #ffffff;
    }
}

html, body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg);
    color: var(--fg);
}

.content {
    display: flex;
    flex-direction: column;
    padding: 1em;
    align-items: center;
}

.login {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
}

a {
    color: var(--accent_bg);
}
