/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: #f7f4ef;
  color: #6e6e6e;
}

/* NAV */
.nav {
  position: absolute;
  top: 20px;
  right: 30px;
}

.login-btn {
  border: 1px solid #bfb6a8;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6e6e6e;
  text-decoration: none;
  opacity: 0.4;
  pointer-events: none;
  transition: all 0.2s ease;
}

.login-btn.active {
  opacity: 1;
  pointer-events: auto;
}

.login-btn:hover {
  background: #eae4dc;
}

/* CENTERING */
.center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  text-align: center;
}

/* BRAND */
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  letter-spacing: 1px;
}

.pixel {
  color: #000;
}

.fix {
  color: #c6a86b;
}

/* DIVIDER */
.divider {
  width: 40px;
  height: 2px;
  background: #c6a86b;
  margin: 18px auto 22px;
}

/* CONTENT SLOT TEXT */
.viewer-text {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8175;
}

/* INPUT SYSTEM */
.input-wrap {
  position: relative;
}

.input-field {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  text-align: center;
  color: #6e6e6e;
  font-family: 'Inter', sans-serif;
  letter-spacing: 2px;
}

/* GHOST TEXT */
.ghost-text {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  color: #b5ada2;
  pointer-events: none;
}

/* HELPER TEXT */
.helper {
  margin-top: 12px;
  font-size: 12px;
  color: #b5ada2;
  letter-spacing: 1px;
}

/* HIDDEN */
.hidden {
  display: none !important;
}