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

body {
  font-family: sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/layered-waves-haikei.svg");
  background-size: cover;
  padding: 10px;
}

#loginForm,
#registerForm {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 500px;
  background: white;
}

#loginForm.active,
#registerForm.active {
  display: flex;
}

/* Input & register/login button */
input,
button {
  margin-top: 10px;
  width: 80%;
  padding: 5px;
}

/* register/login button */
button {
  background: white;
  border: none;
  border-radius: 0;
  transition: 0.3s ease;
  padding: 10px 5;
  font-size: 15px;
}

button:hover {
  background: black;
  color: white;
}

/* login/register switch text */
form p {
  margin-top: 5px;
  font-size: 10px;
}

/* Form switch buttons */
.signBtn,
.registerBtn {
  color: rgb(110, 144, 255);
  cursor: pointer;
  padding: 5px;
}
