body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

h2 {
  margin: 0 0 10px 0;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 350px;
  width: 350px;
  background-color: #f1f1f1;
  border-radius: 10px;
}

.form-input {
  display: flex;
  flex-direction: column;
  padding: 10px;
  margin: 5px 0 20px 0;
  box-sizing: border-box;
  border: 2px solid #000;
  border-radius: 5px;
  width: 275px;
}

.login-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #4caf50;
  color: white;
  height: 30px;
  padding: 14px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.login-button:hover {
  background-color: #409644;
}

.error {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(230, 122, 122, 0.695);
  font-size: 13px;
  margin: 0 0 10px 0;
  width: 275px;
  height: 28px;
  text-align: center;
  border-radius: 5px;
  border: red 1px solid;
}
