@font-face {
  font-family: 'Mini';
  src: url('../fonts/mini.ttf') format('opentype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Mini', Arial, sans-serif;
}

body {
  background-image: url('../img/inicia.png');
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;    
  overflow: hidden;
  position: relative; 
}

/* Contenedor principal alineado con el vacío del fondo */
.formulario-registro {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: -7rem; /* Empuja los campos hacia la zona oscura */
  z-index: 1;
}

.subtitulo {
  color: #ffffff;
  font-size: 4rem;
  font-weight: normal;
  margin-bottom: 5rem;
  position: relative;
  bottom: 4rem;
  font-family: 'Mini', Arial, sans-serif;
}

.inputs-container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  width: 35rem;
  max-width: 85%;
  position: relative;
  top: -4rem;
}

/* Estilos idénticos a la maqueta para los inputs */
.inputs-container input {
  width: 100%;
  background-color: transparent; /* Fondo transparente */
  border: 1px solid #ffffff; /* Borde delgado y blanco */
  color: #ffffff;
  padding: 1.2rem;
  font-size: 3.5rem;
  text-align: center;
  outline: none;
  border-radius: 0; /* Bordes rectos */
  font-family: 'Mini', Arial, sans-serif; /* Forzamos Mini en los inputs */
}

.inputs-container input::placeholder {
  color: #ffffff;
  opacity: 1;
  font-family: 'Mini', Arial, sans-serif; /* Forzamos Mini en el placeholder */
}

.inputs-container input:focus {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Botón Jugar */
#jugar {
  background-color: #ffffff;
  color: #000000;
  font-size: 3rem;
  font-weight: bolder;
  cursor: pointer;
  padding: 3.5rem;
  width: 32rem;
  max-width: 80%;
  border: none;
  opacity: 0;
  
  /* Se posiciona de forma absoluta para tapar exactamente el que está dibujado en el fondo */
  position: absolute;
  bottom: 25%; /* AJUSTA ESTE PORCENTAJE si necesitas subir o bajar el botón */
  
  transition: background-color 0.3s, transform 0.2s;
  z-index: 2;
  font-family: 'Mini', Arial, sans-serif; /* Forzamos Mini en el botón */
}

#jugar:hover {
  background-color: #e0e0e0;
  transform: scale(1.02);
}

#jugar:disabled {
  background-color: #7a7a7a;
  cursor: not-allowed;
  transform: none;
}