section {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
}

.button-group {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 1rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.5rem;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  border-radius: 2rem;
  border: 2px solid rgb(87, 87, 87);
  background-color: #000000;
  max-width: 500px;
}

.button-group .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.checkbox {
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media screen and (max-width: 700px) {
  .input-group {
    padding: 0;
  }
}
