h2 {
  -webkit-text-stroke: 0.5px white;
  font-size: 2em;
}

main {
  width: 80%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font: inherit;
}

#form {
  width: 100%;
  display: flex;
  justify-content: center;
}
#login-form {
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 200px;
  padding: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#error-message {
  color: red;
  -webkit-text-stroke: 0.5px black;
  font-size: 1.2em;
}

input {
  border-radius: 5px;
}

button {
  background-color: #00c2bc;
  color: white;
  padding: 5px 30px;
  border-radius: 10px;
  font: inherit;
  margin-top: 20px;
}

button:hover {
  background-color: #ff7347;
}

#close-modal:hover {
  background-color: #ff5722;
}
