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

/* Main login container */
.container {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  margin: 10vh auto;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Logo style */
.logo {
  width: 280px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

/* Inputs and buttons */
input, button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  font-size: 16px;
}

button {
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

/* Language buttons */
.lang-switch button {
  margin-top: 5px;
}
