/* ================= PASSWORD GATE — full screen (access.html) =================
   Archivo nuevo, no toca ni sobreescribe nada de film.css.
   Usa los mismos tokens del sitio: Jost para labels/uppercase,
   Roboto para texto, negro/blanco como el resto de la página. */

.gate-page-body {
  background: #000;
}

.gate-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px;
  text-align: center;
  background: #000;
}

.gate-page-eyebrow {
  margin: 0 0 18px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.gate-page-title {
  margin: 0 0 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 40px);
  color: #fff;
}

.gate-page-copy {
  max-width: 380px;
  margin: 0 0 36px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.gate-page-form {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gate-page-form input[type="password"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 10px 4px;
}
.gate-page-form input[type="password"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.gate-page-form input[type="password"]:focus {
  outline: none;
  border-bottom-color: #fff;
}

.gate-page-form button[type="submit"] {
  margin-top: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.gate-page-form button[type="submit"]:hover {
  background: #fff;
  color: #000;
}

.gate-page-error {
  margin: 14px 0 0;
  min-height: 14px;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #e2897b;
}

.gate-page-back {
  margin-top: 44px;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}
.gate-page-back:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .gate-page {
    padding: 20px;
  }
  .gate-page-copy {
    font-size: 10px;
  }
}
