/* Reset */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Container Layout */
.container {
  display: flex;
  height: 100vh;
}

/* Left Side */
.left-side {
  width: 50%;
  position: relative;
  overflow: hidden;
  background: black;
}

.video-area,
.slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

video#bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slideshow images */
.slideshow {
  display: none;
  z-index: 1;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.slide.active {
  display: block;
}

/* Overlay on video/images */
.overlay {
  position: absolute;
  z-index: 2;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
}

.logo-overlay {
  max-width: 140px;
  margin-bottom: 10px;
  filter: drop-shadow(1px 1px 3px black);
}

.welcome-text {
  font-size: 1.2em;
  margin-top: 8px;
}

/* Right Side */
.right-side {
  width: 50%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
}

.login-box {
  background: #000;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.login-box h2 {
  margin-bottom: 20px;
  text-align: center;
}

.login-box input,
.login-box button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  box-sizing: border-box;
  border-radius: 5px;
  border: none;
  font-size: 15px;
}

.login-box input {
  background-color: #fff;
  color: #000;
}

.login-box button {
  background-color: #00aeff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.support-msg {
  font-size: 12px;
  color: #ccc;
  margin-top: 10px;
  text-align: center;
}

/* Footer */
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 12px;
  padding: 10px;
  background-color: #f0f0f0;
  color: #333;
}