body, html {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

/* Video Background */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Centering the login box */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  padding: 20px;
}

/* Login box size and appearance */
.login-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}

.login-box h2 {
  margin-bottom: 20px;
  color: #333;
}

.login-box input {
  border: 2px solid orange;
}

.login-btn {
  background: linear-gradient(to right, orange, #ff6600);
  color: white;
  font-weight: bold;
}

.login-btn:hover {
  background: linear-gradient(to right, #ff6600, orange);
}

.login-box {
  max-height: 500px; /* optional */
  overflow-y: auto;  /* scrolls if content overflows */
}
