html,body{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body{
  background-image: url("https://login.yuminQuakelive.net/imges/Background.png");
  background-size: cover;
  background-repeat: no-repeat;
}
form{
  width: 500px;
  padding: 40px 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #000;
  text-align: center;
}
form h1,form p {
  color: white;
  font-weight: 500;
}
footer{
  pointer-events: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  text-align: center;
}
form input[type = "id"],form input[type = "password"] {
  border: 0;
  background: none;
  display: block;
  margin: 20px auto;
  border: 2px solid #01B0F1;
  padding: 15px 10px;
  width: 200px;
  outline: none;
  border-radius: 24px;
  transition: 0.25s;
  text-align: center;
  background-color: #f0f8ff;
}
form input[type = "id"]:focus,form input[type = "password"]:focus {
  width: 280px;
  background-color: #f0f8ff;
}
form button[type = "submit"]{
  border: 0;
  background: none;
  display: block;
  margin: 20px auto;
  border: 2px solid #f0f8ff;
  padding: 15px 10px;
  width: 200px;
  outline: none;
  color: white;
  border-radius: 25px;
  transition: 0.25s;
  text-align: center;
  cursor: pointer;
}
form button[type = "submit"]:hover {
  border: 2px solid #000000;
  color: #000000;
  background-color: #FFE699
}
.container{
  width: 500px;
}
.pw{
  display: none;
}
@media only screen and (max-width: 767px) {
  .container {
    width: 90%;
  }
}
footer span{
  display: inline-block;
}