* {
  padding: 0px;
  margin: 0px;
  font-family: arial;
}

#login {
  width: 100%;
  height: 100vh;
  background: white;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
}

.center {
  width: 350px;
  height: auto;
  margin: 0 auto;
  margin-top: 160px;
  background-color:rgb(110, 109, 109);
  padding: 40px;
}

.center h2 {
  font-size: 40px;
  text-align: center;
  color: whitesmoke;
  padding-bottom: 40px;
}

.box {
  width: 100%;
}

.tx {
  width: 92%;
  padding: 13px 10px;
  margin: 5px 0px;
  background-color: #dbdbdb;
  border: 3px solid #dbdbdb;
  color: whitesmoke;
  transition: all 0.7s;
}

.btn {
  width: 99.7%;
  font-size: 19px;
  color: #f5f5f5;
  padding: 12px;
  margin: 5px 0;
  background-color: rgb(63, 85, 207);
  border: none;
  transition: all 0.4s;
}


.center p {
  margin: 20px 0;
  text-align: center;
  font-size: 14px;
}

.center p a {
  color: whitesmoke;
}

@media screen and (min-width:1500px) {

  .center {
    width: 350px;
  }

}

@media screen and (max-width:900px) {
  #login {
    background-size: 100% 100%;
  }

  .center {
    width: 230px;
  }

  .center p {
    font-size: 12px;
  }

}

@media screen and (max-width:350px) {
  .center {
    padding: 20px;
    width: 75%;
  }
}