/* ============================
   SafePass ID Reset & Base Styles
   ============================ */

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

/* Root defaults */
html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Body defaults */
body {
  font-family: "Nunito", "Segoe UI", Arial, sans-serif;
  background-color: #f6f4ef; /* warm off-white */
  color: #2f3a3c;            /* deep slate */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

/* Paragraphs */
p {
  margin-bottom: 1em;
}

/* Lists */
ul, ol {
  list-style: none;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Images */
img {
  max-width: 100%;
  display: block;
}

/* Buttons */
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* Forms */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
  border: none;
  outline: none;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
