body.login {
  background-color: #303437;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* login page */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 416px;
  height: 580px;
  flex-direction: column;
  box-shadow: 0 0 35px 0 rgba(49, 57, 66, 0.5);
}

.login-header {
  background-color: var(--me-primary);
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  margin-top: 0;
  width: 100%;
  height: 100px;
  text-align: center;
}

.login-content {
  padding: 2.25rem;
  background-color: var(--me-background);
  width: 100%;
  height: 480px;
}

.login-text {
  text-align: center;
  margin: auto;
  width: 75%;
  color: #8391a2;
}

.login-title {
  font-weight: 500;
  color: var(--me-white);
  font-size: 20px;
  margin: 10px 0;
}

.login-text p {
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 2.25rem;
}

.login-form-label {
  color: var(--me-white);
  font-weight: 500;
  font-size: 1em;
  letter-spacing: 0.003em;
}

form > div > input.login-form-control {
  display: block;
  width: 100%;
  margin: .5em 0;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #98a6ad;
  border: 1px solid #43494E;
  background-color: #25282A;
  border-radius: 0.25rem;
}

form > div label.form-check-label {
  font-size: 1em;
  color: var(--me-gray);
}

.form-check-input {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}