html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  font-size: 2vmax;
  background-color: #2b2b2b;
  color: #d8bb82;
  font-family: 'Great Vibes';
  display: inline-block;
}

@media (min-width: 800px) {
  html, body {
    font-size: 14px;
  }
}

@media (min-width: 1280px) {
  html, body {
    font-size: 16px;
  }
}

.text {
  font-size: 2rem;
  letter-spacing: 0.25rem;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem;
  box-sizing: border-box;
  hyphens: auto;
}

.text p {
  margin: 0 0 2rem 0;
}

.text p.space-big {
  margin-top: 2.4rem;
}

.login {
  float: right;
  margin: 3rem 1rem 0 0;
}

.password-container {
  display: inline-block;
  position: relative;
  padding-bottom: 1.2rem;
}

.password {
  font-family: sans-serif;
  font-size: 1rem;
  padding: 0.5rem 1rem 0.55rem 1rem;
  background-color: #535353;
  color: #d8bb82;
  border-radius: 0.2rem 0.2rem 0 0;
  border: none;
  border-bottom: 0.05rem solid #a2a2a2;
  box-sizing: border-box;
  margin: 0;
  width: 12rem;
}

.password::placeholder {
  color: #a2a2a2;
}

.password:focus {
  outline: none;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid #d8bb82;
}

.error {
  color: #cd5959;
  font-size: 0.8rem;
  font-family: sans-serif;
  position: absolute;
  bottom: 0;
  left: 1rem;
  letter-spacing: 0.05rem;
  white-space: nowrap;
}

.button {
  font-family: sans-serif;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background-color: #2b2b2b;
  color: #d8bb82;
  border-radius: 0.2rem;
  border: 0.1rem solid #d8bb82;
  cursor: pointer;
}

.button:focus {
  outline: none;
  color: #2b2b2b;
  background-color: #d8bb82;
}
