* {
  box-sizing: border-box;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto condensed", sans-serif;
  height: 100vh;
  width: 100%;
  padding: 5px;
  background: url('/game/imgs/bg-desktop.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  background-color: #1d447f3e;
  flex-direction: column;
  width: 40%;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Logotipo */
.logo-container {
  margin-top: -50px;
  position: absolute; 
  top: 20px; 
  left: 50%; 
  transform: translateX(-50%); 
}

.logo {
  max-width: 200px;
  height: auto;
  display: flex;
  position: relative;
  margin-top: 70px;
  margin-left: 50px;
}

.form-container {

  padding: 30px;
  background-color: #1d447f53;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 250px;
  color: #e0e0e0;
  position: relative;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #ffffff;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #fff;
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ae0001;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  font-size: 14px;
}

.password-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}

.password-container input {
  width: 100%;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 40%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-password img {
  width: 20px;
  height: 20px;
}


label a {
  color: #f8a000;
  font-size: 0.7rem;
}

form button {
  width: 10% ;
  padding: 12px;
  background-color: #ae0001;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #5465d1;
  border: none;
}

form p {
  text-align: center;
  margin-top: 10px;
  color: #fff;
  font-size: 0.8rem;
}

form p a {
  color: #f8a000;
  text-decoration: none;
}

.banner img{
 width: 100%;
 height: 190px;
}


/*media*/
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    width: 100%;
  }
  .banner img{
    width: 100%;
    height: 140px;
   }
  .logo {
    margin-left: 0px;
  }

  body{
    background: url('/game/imgs/bg-mobile.jpg') no-repeat center center;
    background-size: cover;
  }
}


.button-container button {
  flex: 0.5;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 0px;
  padding: 5px;
}

.whatsapp-img {
  margin-left: 0px;
  display: flex;
  align-items: center;
  margin-right: 10px;
  right: auto;
}

.whatsapp-img img {
  width: 30px;
  cursor: pointer;
}