main {
  background: var(--dark-blue);
  justify-content: center;
  padding: 1rem;
  height: 100vh;
}

h1 {
  margin: 2rem 0 1rem;
  text-align: center;
}

main .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
}

.content > * {
  flex: 1 1 40%;
}

.form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto 0;
  width: 100%;
  max-width: 488px;
}

form#loginForm {
  width: 100%;
  background-color: var(--white);
  border-radius: 10px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

form#loginForm .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}