

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Gloria Hallelujah', cursive;
}

/* Imagen de fondo ajustada al navegador */
.fondo-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: fill;  /* ðŸ”¥ AquÃ­ estÃ¡ la clave para estirarlo */
  z-index: -1;
}

/* Contenido encima del fondo */
.contenido {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.texto-superior {
  font-size: 28px;
  color: white;
  text-shadow: 2px 2px 3px #ccc;
  filter: blur(0.4px);
  margin-bottom: 30px;
}

.contenedor-login {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 0 10px #000;
  color: white;
}

.formulario-login h1 {
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px #ccc;
}

.formulario-login input,
.formulario-login button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 6px;
  border: 2px dashed white;
  background: transparent;
  color: white;
  text-align: center;
  font-size: 16px;
  text-shadow: 1px 1px 2px #ccc;
}

.formulario-login button {
  cursor: pointer;
  transition: background 0.3s;
}

.formulario-login button:hover {
  background: #ffffff22;
}
