@font-face {
  font-family: 'fuentemenu';
  src: url('fonts/AlveraDEMO-BoldSquare.otf') format('truetype');
}

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.login-container {
  position: relative;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 1.5rem;
  width: 90%;
  max-width: 300px;
  box-sizing: border-box;
  border: 1px solid #fff;
  transition: opacity 2s ease-out;
}

.menu-image {
  display: block;
  margin: 0 auto 3rem auto;
  max-width: 80%;
  height: auto;
  image-rendering: pixelated;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.login-form label {
  font-family: monospace;
  margin-top: 0.5rem;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  background-color: #000;
  border: none;
  border-bottom: 2px dashed #fff;
  padding: 0.5rem;
  color: #fff;
}

.login-form input[type="password"]{
  margin-bottom: 2rem;
}

button {
  margin-top: 1rem;
  padding: 0.5rem;
  background-color: #000;
  color: #fff;
  border: 2px solid #fff;
  cursor: pointer;
  font-family: 'fuentemenu', monospace;
}

.ascii-checkbox {
  font-family: monospace;
  color: #fff;
  cursor: pointer;
  user-select: none;
  margin-top: 1rem;
}

.fade-out {
  opacity: 0;
  transform: translateY(100px); /* caída más sutil */
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}


#backgroundVideo{
  position: fixed; 
  top: 0; 
  left: 0; 
  z-index: -1; 
  width: 100vw; 
  height: 100vh; 
  object-fit: cover; 
  pointer-events: none; 
  visibility: hidden;
}