body {
    margin: 0;
    padding: 0;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    z-index: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(22, 11, 50, 0.65);
    z-index: -1;
}
.fw-light{
	color:#ffffff;
}
    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
	
	.login-box input::placeholder {
  opacity: 1;
  font-weight: 500; /* optional */
}
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}
    .login-box {
	  text-align:center;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 20px;
	  border-style:solid;
	  border-width:1px;
	  border-color:#ffffff44;
      box-shadow: 0 0 20px rgba(114, 9, 183, 0.4);
      backdrop-filter: blur(10px);
      padding: 40px 30px;
      width: 100%;
      max-width: 400px;
      animation: fadeInUp 0.8s ease forwards;
      transform: translateY(40px);
      opacity: 0;
    }

    @keyframes fadeInUp {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .login-box h2 {
      text-align: center;
      font-weight: 700;
      color: #fff;
      margin-bottom: 25px;
    }

    .form-control {
      background: rgba(255, 255, 255, 1);
      border: none;
      border-radius: 10px;
      padding: 12px 15px;
    }

    .form-control:focus {
      background: rgba(255, 255, 255, 0.8);
      box-shadow: 0 0 8px #f72585;
    }

    .btn-login {
      background: linear-gradient(45deg, #f72585, #7209b7);
      border: none;
      border-radius: 12px;
      color: #fff;
      font-weight: 600;
      padding: 12px;
      width: 100%;
      margin-top: 15px;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px rgba(247, 37, 133, 0.5);
    }

    .btn-login:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 20px rgba(247, 37, 133, 0.8);
    }

    .social-login {
      text-align: center;
      margin-top: 25px;
    }

    .social-login i {
      font-size: 1.3rem;
      margin: 0 8px;
      cursor: pointer;
      transition: 0.3s;
    }

    .social-login i:hover {
      color: #fff;
      transform: scale(1.2);
    }

    .small-text {
      text-align: center;
      font-size: 0.9rem;
      margin-top: 15px;
      color: #fff;
    }

    @media (max-width: 480px) {
      .login-box {
        padding: 30px 20px;
        border-radius: 15px;
      }
    }