@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100vw;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

/* 🔥 Fullscreen video background */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none; /* disables controls appearing ever */
}

/* 💗 Password box */
.password-container {
  background: rgba(30, 30, 30, 0.6);
  padding: 2rem;
  border-radius: 16px;
  max-width: 90%;
  width: 350px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.password-container h1 {
  font-size: 1.8rem;
  color: #ff69b4;
  margin-bottom: 0.5rem;
}

.hint {
  color: #ffcce6;
  font-style: italic;
  margin-bottom: 1.2rem;
}

input[type="password"] {
  width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1rem;
  text-align: center;
  outline: none;
  margin-bottom: 1rem;
}

input::placeholder {
  color: #ffb6c1;
}

button {
  width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 10px;
  background: #ff69b4;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #e91e63;
}

#errorMessage {
  color: #ff7da7;
  margin-top: 0.8rem;
  font-size: 0.9rem;
}
