body,
html {
  height: 100%;
  background-color: #000000;
}

#container {

  background-image: url("../img/kobebg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(100%);

}

#login-box {
  width: 220px;
  background-color: rgb(0, 0, 0, 0.8);
  border-radius: 15px;

  padding: 50px 0 20px 0;
}

#login-box h3 {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

#login-box hr {
  border: 0.5px solid #ffffff;
  width: 80%;
}

#login-box input {
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 12px;
  margin: 10px auto 0 auto;
  display: block;
  width: 70%;
  font-weight: bold;
}

#login-box button {
  color: #000000;
  margin: 20px auto 0 auto;
  display: block;
  padding: 12px;
  background-color: #e8eb3f;
  border: none;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  width: 66%;
  cursor: pointer;
}

#login-box input::placeholder {
  color: #000000;
  font-weight: bold;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

h1 {
  font-size: 4em;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}