h4 {
    margin: 0px 0px;
  }

  body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
      sans-serif;
    margin: 100px 40px;
    align-items: center;
    align-content: center;
    display: flex;
    flex-direction: column;
  }
  .header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin-top: 10px;
  }
  .header-container img {
    width: 15%;
    height: 15%;
    margin-right: 10px;
  }
  input,
  button {
    padding: 10px;
    margin: 11px 0;
    width: 100%;
    box-sizing: border-box;
  }
  .login-div {
    width: 50%;
  }
  button {
    cursor: pointer;
    background-color: rgb(0, 91, 77);
    color: white;
    font-weight: bold;
    border: 0;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
  }
  .error {
    color: #b91c1c;
    height: 20px;
    margin-top: 6px;
  }
  .inputs-container {
    width: 75%;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
  }
  .container {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 25px;
    align-items: center;
    align-content: center;
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 400px;
  }

.error-button {
  background-color: rgb(0, 91, 77);
  padding: 15px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
}
.error-button:hover {
  background-color: rgba(25, 33, 60);
}