html, body {
  background: #ebebeb;
  font-family: 'Open Sans', sans-serif;
  height: 100%;
  margin: 0;
}

#container {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 auto;
  width: 800px;
}

#title {
  color: #051237;
  font-size: 40px;
  margin: 6% 0 24px;
}

#description {
  color: #4f5058;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 60px;
  text-align: center;
  width: 700px;
  white-space: nowrap;
}
#description span {
  color: #696973;
  font-size: 14px;
  line-height: 26px;
}

#auth-form {
  align-items: center;
  display: flex;
  flex-direction: column;
}

#password {
  border: .5px solid #b2b2b2;
  border-radius: 6px;
  font-size: 16px;
  height: 20px;
  padding: 6px 14px;
  width: 350px;
}

#password::placeholder {
  color: #b8b8b8;
}

#error {
  color: #ff2f36;
  font-size: 12px;
  margin-top: 4px;
  height: 12px;
  text-align: right;
  width: 350px;
}

#submit-btn {
  background-color: #3fcf3f;
  border: .5px solid #999999;
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
  height: 40px;
  width: 150px;
  transition: all .2s;
}

#submit-btn:disabled {
  cursor: default;
  background-color: #3fcf3fba;
  color: #ececec;
}
