* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

::selection {
  background-color: aquamarine;
  color: white;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: rgb(59, 55, 57);
  color: white;
  height: 100vh;
}

h2 {
  font-size: 36px;
  padding-top: 2rem;
}

.container {
  margin: auto;
  margin-top: 2rem;
  display: flex;
  height: 80%;
  width: 30%;
  flex-direction: column;
  text-align: center;
  border: 0.1rem solid rgb(218, 208, 208);
  background-color: aliceblue;
  color: gray;
  border-radius: 3rem;
}
.navbar {
  height: 20%;
}

input,
button {
  width: 20rem;
  /* gap: 20rem; */
  margin: 0 auto;

  border-radius: 1rem;
  height: 5rem;
  border: none;
  background-color: rgb(59, 55, 57);
  color: aliceblue;
}

input {
  padding: 1rem;
  background-color: aliceblue;
  color: black;
  border: 0.05rem solid rgb(212, 205, 205);
}

input:hover {
  filter: brightness(0.9);
}

.checkbox input,
.checkbox label {
  height: 1rem;
  width: 1rem;
  gap: 1rem;
}

a {
  text-decoration: none;
  color: rgb(101, 100, 177);
  font-weight: 600;
}

.inputs {
  gap: 2rem;
  height: 50%;
  display: flex;
  flex-direction: column;
}

button {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
  border-radius: 2rem;
}

label {
  margin-left: 2rem;
}

button:hover {
  cursor: pointer;
  filter: brightness(1.15);
}

.somehow-footer {
  height: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer p {
  /* margin: auto; */
  text-align: center;
  font-weight: 300;
  margin-top: 1rem;
  /* position: absolute; */
}

.navbar {
  color: rgb(42, 95, 145);
}
