#container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: 40%;
  padding: 2rem;
}

form label {
  font-weight: bold;
}

form input {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  padding: 0.5rem;
  background-color: var(--accent-1-color);
  color: var(--primary-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
