/* Modern Reset & Design Tokens */

:root {
  /* Colors */
  --brand-light: #59b2ff;
  --input-base: #1c1f21;
  --input-stroke: #363b40;
  --shape-background: #131516;
  --text-heading: #f9f9f9;
  --text-body: #869198;

  /* Typography */
  --open-sans: "Open Sans", sans-serif;

  /* Border Radius (Tokens que adicionamos) */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
}

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

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: var(--shape-background);
  color: var(--text-body);
  font-family: var(--open-sans);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
button,
textarea,
select {
  font: inherit;
}
