body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.homepage {
  height: 100vh;
  width: 100vw;
}

#background-video {
  position: fixed;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* GLASS LOGIN BOX */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.shivamai-logo {
  width: 250px;
  margin-bottom: 12px;

  object-fit: contain;

  filter: drop-shadow(0 0 18px rgba(0,183,255,0.25));
}

#login-form {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 15px;
  width: 320px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  animation: fadeIn 1s ease;
}

/* INPUT */
#login-form input {
  width: 90%;
  padding: 12px;
  margin: 12px 0;
  border-radius: 6px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: white;
}

/* BUTTON */
#login-form button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: none;
  background: #f4c430;
  color: black;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

#login-form button:hover {
  transform: scale(1.05);
  background: white;
}

.switch-auth {
  margin-top: 18px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.switch-auth a {
  color: #f4c430;
  text-decoration: none;
  font-weight: bold;
  margin-left: 5px;
  transition: 0.3s;
}

.switch-auth a:hover {
  color: white;
}

.powered-by {
  position: fixed;
  bottom: 18px;
  right: 24px;

  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 12px;
  letter-spacing: 1px;

  color: rgba(255,255,255,0.65);

  z-index: 10;
}

.powered-by img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  filter: drop-shadow(0 0 8px rgba(0,183,255,0.35));
}

/* ANIMATION */
@keyframes fadeIn {
  from {opacity:0; transform: scale(0.9);}
  to {opacity:1; transform: scale(1);}
}