#container {
  display: grid;
  grid-template-rows: 130px auto auto 200px;
}

.login-container {
  margin-top: 100px;
  width: 300px;
  height: 350px;
  margin-bottom: 300px;
}

.login-wrapper {

  padding: 30px;
  grid-template-rows: 30% 70%;
}

.login-header {
  grid-row: 1/2;
}

.email-to-reset-header__text {
  text-align: center;
  font-size: 28px;
  color: #004f0c;
}

.email-to-reset-header__msg {
  color: black;
  font-size: 14px;
  padding: 10px;
  margin: 10px 0 10px 0;
  text-align: justify;
}

.login-form {
  grid-row: 2/3;
  grid-template-rows: 70% 30%;
}

.form-control input {
  grid-row: 1/2;
  justify-self: center;
  align-self: center;
  justify-content: center;
  align-content: center;
}

.email-to-reset-btn {
  grid-row: 2/3;
  align-self: center;
}

@media (max-width: 575.98px) {
  .login-wrapper {
    width: 100%;
    height: auto;
    padding: 24px;
  }

  .email-to-reset-header__text {
    font-size: 24px;
  }

  .email-to-reset-header__msg {
    padding: 6px;
    margin: 6px 0;
  }
}
