* {
  padding: 0px;
  margin: 0px;
  font-family: bahnschrift;
}

#login {
  width: 100%;
  height: 100vh;
  background-image: url("../img/index.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
}

.center {
    border-radius: 10px;
    width: 350px;
    height: auto;
    margin: 0 auto;
    margin-top: 100px;
    background-color: rgba(224, 222, 222, 0.6);
    box-shadow: 2px 2px 16px 0px #757575;
    padding: 40px;
    border: 2pt solid white;
}

.center h2 {
  font-size: 40px;
  text-align: center;
  color: #151616;
  padding-bottom: 40px;
}

.fl {
  width: 100%;
}

.itpw {
    font-size: 12pt;
    border-radius: 5px;
    width: 92%;
    padding: 15px 10px;
    margin: 10px 0px;
    background-color: #dbdbdb;
    border: 3px solid #dbdbdb;
    color: #757575;
    transition: all 0.7s;
}

.its {
  border-radius: 10px;
  width: 99.7%;
  font-size: 19px;
  color: #f5f5f5;
  padding: 12px;
  margin: 5px 0;
  background-color: #0b8cbf;
  transition: all 0.4s;
}

.itpw:focus {
  border-bottom: 3px solid #004d40;
  color: #004d40
}

.its:hover , .its:focus {
  opacity: 0.8;
  cursor: pointer;
}

.center p {
  margin: 20px 0;
  text-align: center;
  font-size: 14px;
}

.center p a {
  color: #757575;
}

@media screen and (min-width:1500px) {

  .center {
    width: 350px;
  }

}

@media screen and (max-width:900px) {
  #login {
    background-size: 100% 100%;
  }

  .its {
    width: 100%;
  }

  .itpw {
    font-size: 18px;
    width: 90%;
    padding: 13px 3%;
  }

  .center {
    width: 230px;
  }

  .center p {
    font-size: 12px;
  }

}

@media screen and (max-width:350px) {
  .center {
    padding: 20px;
    width: 75%;
  }
}