/* ==============================================
   SISTEMSAT — Reset e Base
   ============================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 14px;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

input, select, textarea {
  font-family: var(--font-b);
}

input:focus, select:focus, textarea:focus {
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: var(--text3);
}

/* Scrollbar custom */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
