html {
  font-size: 14px;
  height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Lato", sans-serif;
  background-color: #f5f1ed;
  height: 100%;
  width: 100%;
  margin: 0;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
}

.box {
  width: 400px;
  background-color: white;
  box-shadow: 0px 0px 23px 9px rgb(0 0 0 / 20%);
  border-radius: 5px;
  padding: 20px;
}

.logo {
  display: block;
  height: 40px;
  width: 180px;
  margin: 10px auto 10px;
}

.subtitle {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 30px;
}

.separator {
  background-color: #f5f1ed;
  height: 5px;
  border: none;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.header {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

p, ol {
  margin-top: 0;
  margin-bottom: 20px;
}

.log-in-link {
  display: block;
  
  margin-top: 30px;
  
  padding: 1rem 2rem;
  border-radius: 0.5rem;

  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;  
  
  background: #2DAE7C;
}