:root {
  --auto-frontend-primary-color: #4062ed;
  --auto-frontend-bg-color: #fff;
  --auto-frontend-text-color: rgba(0, 0, 0, 0.88);
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  height: 100vh;
  margin: 0;
  background-color: var(--auto-frontend-bg-color);
  color: var(--auto-frontend-text-color);
}

#root {
  height: 100%;
}

@media (prefers-color-scheme: dark) {
  :root {
    --auto-frontend-bg-color: #141414;
    --auto-frontend-text-color: rgba(255, 255, 255, 0.85);
  }
}
