ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  width: fit-content;
  height: fit-content;
  min-width: 200px;
  margin: 0 auto;
  padding: 0px;
}
.menu ul a,
a.button {
  text-decoration: none;
  color: black;
  font-size: 15px;
  padding: 10px;
  border: #000 1px solid;
  background-color: #f2f2f2;
  border-radius: 8px;
}
body {
  background-color: #000;
  color: #f2f2f2;
  /* background-image: url(https://cdn.karanook.com/assets/kn-rune-logo.png);
  background-repeat: repeat; */
}
.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  min-width: 200px;
  margin: 0 auto;
  padding: 10px;
  background-color: transparent;
  border-radius: 8px;
}

form {
  padding: 10px 35px;
  width: fit-content;
  margin: 25px auto;
  background-color: black;
  color: whitesmoke;
  border-radius: 8px;
}
form p {
  width: 100%;

  /* text-align: left; */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-items: center;
  align-items: center;
}
/* form p label ~ input,
form p input ~ label {
  width: 100%;
} */
form input[type="checkbox"] {
  border-radius: 10px;
}
form input {
  border-radius: 8px;
  border: 1.5px solid black;
  background-color: #f2f2f2;
  color: black;
}
form input[type="email"],
form input[type="password"] {
  width: 100%;
}
form button[type="submit"] {
  width: 100%;
  height: 50px;
  margin-top: 10px;
  /* border-radius: 50px; */
  /* border: white solid 1px; */
  background-color: black;
  color: white;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}
form button[type="submit"]:hover {
  background-color: #f2f2f2;
  color: black;
}
/* .button.secondaryAction {
  width: 100%;
  height: 30px;
  padding: 3px 8px 3px 8px;
  border-radius: 100px;
  color: black;
  font-size: 16px;
  text-decoration: none;
} */

/*  */
/* .content-block {
  background-color: red;
  padding: 3px;
} */
form.login {
  /* box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2); */
  color: whitesmoke;
}
/* form.login label {
} */
