/* Fondo video */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center; /* NUEVO */
  z-index: -1;
}

/* Overlay central */
.overlay {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: brightness(0.7);
  padding: 20px;
}

.logo {
  width: 160px;
  margin: 0 auto 20px;
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
  font-size: 1em;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type="text"] {
  padding: 10px;
  width: 80%;
  max-width: 400px;
  margin-bottom: 10px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
}

button {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.3s ease;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.mensaje-ok {
  margin-top: 10px;
  color: #4af275;
  font-weight: bold;
}
body {
  font-family: 'Playfair Display', serif;
}