/* body {
  margin: 0;
  font-family: Arial, sans-serif;
}

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

#background-video {
  position: fixed;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.signin-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#signin-form {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  color: white;
}

#signin-form input {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: none;
}

#signin-form button {
  width: 100%;
  padding: 10px;
  background: #f4c430;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

#signin-form button:hover {
  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;
} */

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 SIGNUP BOX */
.signin-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

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

  object-fit: contain;

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

#signin-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 */
#signin-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 */
#signin-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;
}

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

/* SWITCH AUTH */
.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);
  }
}