.login-form {
  display:flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  justify-content: center;
  background-image: url(../images/bg_game.png);
  background-size: cover;
}

.login_header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 50px;
}

.login_header img{
width: 100px;
margin-bottom: 15px;
}

.login_input {
  border: 2px solid #333;
  border-radius: 8px;
  color: #333;
  font-size: 1em;
  margin-bottom: 15px;
  max-width: 300px;
  width: 100%;
  outline: none;
  padding: 15px;
}

/* .login_button {
  background-color: transparent;
  border-radius: 8px;
  cursor: pointer;
  font: 1em;
  max-width: 300px;
  width: 100%;
  font-size: 35px;
  background: -webkit-linear-gradient(#fd8c01, #fc0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  font-weight: 900;
} */
/* 
.login_button:disabled {
  filter:grayscale(100%);
  cursor: auto;
} */

.logo_game {
  position: relative;
  transform: scale(4);
  top: -40px;
}

.game_select {
  color: aliceblue;
}
.listgame {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.game {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  border-radius: 5px;
  width: 200px;
  height: 200px;
  padding: 10px;
  background-color: #071933;
  margin: 10px 0 10px 0;
  font-size: 10px;
}

.img_game {
  border:#ee4208 solid 3px;
  width: 170px;
  height: 100px;
  border-radius: 5px;
}

.playgame {
  width: 100px;
  color: rgb(131, 35, 5);
  padding: 0.5em;
  border-radius: 50px;
  font-weight: 900;
  background-color:#fd4d01;
  cursor: pointer;
}
.playgame a {
  text-decoration: none;
  color: #972306;
}

.playgame a:hover {
  color: #ffffff;
}

@media screen and (max-width:770px){
  .login-form {
    display:flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    height: 100vh;
    justify-content: center;
    background-image: url(../images/bgmobile.png);
    background-size: cover;
  }
  .listgame {
    display: grid;
    grid-template-columns: 200px 200px;
    gap: 20px;

  }
  
}