/* B1 - Reset y base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Courier New", monospace!important;
  background-color: #000;
  color: #63d55e;
  height: 100vh;
  overflow-x: hidden;
}

/* B2 - Contenedor */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  padding-top:0;
  min-height: 100vh;
  width: 100%;
}

/* B3 - Título con estilo */
.title {
  font-size: clamp(3.75rem, 10vw, 6rem); /* 👈 Escalable y adaptable */
  display: flex;
  gap: 0.1em;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap; /* 👈 Impide salto de línea */
  font-family: "Rubik Glitch", sans-serif;
  margin-top:0!important;

}


.title span {
  display: inline-block;
  transform-origin: center top;
  cursor: pointer; /* Para el tap en móvil */
}

/* B4 - Formularios */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  text-align: center;
}

/* B5 - Inputs, labels, textarea */
input,
textarea,
label {
  font-family: "Courier New", Courier, monospace;
}
input,
textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  background: #111;
  color: #63d55e;
  outline: none;
  resize: vertical;
}
label {
  font-size: 0.95rem;
  text-align: left;
  width: 100%;
  margin-top: 1rem;
}

/* B6 - Botón */
button {
  background: #63d55e;
  color: #000;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
button:hover {
  background: #4db848;
}

/* B7 - Oculto */
.hidden {
  display: none;
}

/* B8 - Email visible */
.email-display {
  background: none;
  font-size: 1.1rem;
  text-align: left;
  padding: 1rem;
  border: 2px dashed #63d55e;
  border-radius: 6px;
  color: #63d55e;
}

#googleLoginBtn {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  color: #444;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: background 0.3s;
}
#googleLoginBtn:hover {
  background: #eee;
}
#googleLoginBtn img {
  width: 18px;
  height: 18px;
}
.divider {
  margin: 2rem 0;
  text-align: center;
  font-family: "Courier New", monospace;
  color: #63d55e;
  opacity: 0.6;
  font-size: 1rem;
}

.intro-text {
  max-width: 500px;
  margin: 1.5rem auto;
  font-family: "Courier New", monospace;
  font-size: 1rem;
  text-align: center;
  color: #63d55e;
  opacity: 0.8;
}

.intro-text p,
.subintro {
  font-family: "Courier New", monospace !important;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: center;
  color: #63d55e;
}
#mensajeFinal {
  font-family: "Courier New", monospace;
  font-size: 2rem;
  color: #63d55e;
  text-align: center;
  margin-top: 2rem;
  opacity: 0;
}
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}