body {
  display: flex;
  height: 100vh;
  width: 100vw;
  background-color: green;
  justify-content: center;
  background-color: #070635;
  /* align-items: center; */
  padding: 50px 100px;
}

#logo {
  flex: 1;
  background-image: url("../logos/PNGs/Level_Home_Logo_Blue_1000x1000.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 800px;
}

#loginBox {
  margin-left: 50px;
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 32px;
  color: white;
  margin-bottom: 30px;
}

input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  padding: 20;
  font-size: 18px;
  padding: 8px 12px;
  margin-bottom: 14px;
  color: white;
}

input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
}

#login {
  color: white;
  opacity: 0.5;
  margin-top: 16px;
  transition: opacity 0.3s ease;
}

#login:hover {
  opacity: 0.2;
}

.button {
  font-size: 18px;
  color: white;
  border: 1px solid white;
  border-radius: 200px;
  text-align: center;
  width: 240px;
  line-height: 40px;
  margin-top: 14px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease,
    border-color 0.3s ease;
}

.button:hover {
  color: #070635;
  background-color: white;
  border-color: #070635;
}

@media screen and (max-width: 800px) {
  body {
    flex-direction: column;
    justify-content: center;
  }
  #logo {
    max-height: 400px;
  }
  #loginBox {
    height: auto;
    align-self: center;
    margin-left: 0;
    margin-top: 30px;
  }
}
