.login-page-container {
  height: calc(100vh - 110px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sign-in-heading {
  color: black;
  margin: 0;
}

.error-heading {
  margin: 0;
  vertical-align: middle;
  line-height: normal;
  display: inline-block;
}

.form-container {
  width: 31%;
  height: 70%;
  background-color: #e3ccae;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  justify-content: space-evenly;
}

.input-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-input-wrapper {
  display: flex;
  flex-direction: column;
  padding: 5px;
  color: white;
  width: 100%;
}

label {
  color: black;
}

.login-button {
  width: 50%;
  align-self: center;
  margin-top: 30px;
  background-color: rgb(0, 0, 0);
  color: white;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  border: none;
}

.login-button:hover {
  background-color: rgb(83, 83, 83);
}

.login-button:disabled {
  background-color: rgb(205, 205, 205);
  color: rgb(90, 90, 90);
}

.login-form-input {
  padding: 7px;
  border-radius: 2px;
  border: none;
  outline: none;
  width: 100%;
}

.login-form-input:focus {
  background-color: rgb(224, 224, 224);
}

.error-container {
  background-color: #ff4747;
  color: white;
  width: 50%;
  height: 10%;
  text-align: center;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
