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

html {
  height: 100%;
}

body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.5;
  text-transform: lowercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--text);
}

img {
  display: block;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
  text-transform: lowercase;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Logo classes — one dimension only, never forced square */
.logo-symbol {
  height: 30px;
  width: auto;
}

.logo-wordmark {
  height: 22px;
  width: auto;
}

.logo-login {
  max-width: 200px;
  height: auto;
}

/* Label caps — uppercase tracking label style */
.label-caps {
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-muted);
}

/* Muted text */
.muted {
  color: var(--text-muted);
}

.dim {
  color: var(--text-dim);
}

/* Divider */
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--gap-lg) 0;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border-2);
  border-radius: 3px;
}
