*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#05010d;
  overflow:hidden;
  height:100vh;
  color:white;
}

.background-glow{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left,#ff00aa55,transparent 35%),
    radial-gradient(circle at bottom right,#7b2cff66,transparent 35%),
    linear-gradient(to right,#05010d,#090015);
  z-index:-1;
}

.login-container{
  width:100%;
  height:100vh;
  display:flex;
  justify-content:center;
}

.left-panel{
  flex:0 1 500px;
  padding:70px 30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.logo-box{
  margin-bottom:70px;
}



.logo-box h1{
  font-size:60px;
  font-weight:700;
  background:linear-gradient(to right,#ff4fd8,#7a5cff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.logo-box h2{
  letter-spacing:8px;
  font-size:20px;
  margin-top:10px;
  color:#fff;
}

.logo-box p{
  margin-top:25px;
  font-size:20px;
  color:#cfcfcf;
  line-height:1.7;
}

.feature-list{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.feature-item{
  display:flex;
  align-items:flex-start;
  gap:20px;
}

.feature-icon{
  min-width:60px;
  height:60px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
}

.feature-item h3{
  margin-bottom:6px;
  font-size:22px;
}

.feature-item span{
  color:#bcbcbc;
  line-height:1.6;
}

.right-panel{
  flex:0 1 560px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.login-card{
  width:500px;
  padding:50px;
  border-radius:35px;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 0 40px rgba(255,0,170,0.15);
}

.lock-icon{
  width:90px;
  height:90px;
  margin:auto;
  margin-bottom:25px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:40px;
  background:rgba(255,255,255,0.07);
}

.login-card h2{
  text-align:center;
  font-size:42px;
  margin-bottom:10px;
}

.subtitle{
  text-align:center;
  color:#b9b9b9;
  margin-bottom:40px;
}

.input-group{
  margin-bottom:25px;
}

.input-group label{
  display:block;
  margin-bottom:12px;
  color:#d8d8d8;
}

.input-group input{
  width:100%;
  height:60px;
  border:none;
  outline:none;
  border-radius:18px;
  padding:0 20px;
  font-size:16px;
  color:white;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
}

.input-group input::placeholder{
  color:#8f8f8f;
}

.options{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
  font-size:14px;
}

.options a{
  color:#ff59db;
  text-decoration:none;
}

.login-btn{
  width:100%;
  height:62px;
  border:none;
  border-radius:18px;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  color:white;
  background:linear-gradient(to right,#ff3dbf,#7a5cff);
  transition:0.3s;
}

.login-btn:hover{
  transform:translateY(-2px) scale(1.01);
  box-shadow:0 10px 30px rgba(255,0,170,0.3);
}

@media(max-width:1100px){

  .left-panel{
    display:none;
  }

  .right-panel{
    width:100%;
    padding:20px;
  }

  .login-card{
    width:100%;
    max-width:500px;
  }

}

.camera-wrapper{
  position:relative;
  width:220px;
  height:150px;
  margin-bottom:20px;
}

.camera-body{
  position:absolute;
  width:180px;
  height:110px;
  border:4px solid #ff4fd8;
  border-radius:20px;
  top:30px;
  left:15px;

  box-shadow:
    0 0 8px #ff4fd8,
    0 0 18px #ff4fd8,
    0 0 40px #ff00c8;
}

.camera-top{
  position:absolute;
  width:55px;
  height:22px;
  border:4px solid #ff4fd8;
  border-bottom:none;
  border-radius:14px 14px 0 0;
  top:-25px;
  left:16px;

  box-shadow:
    0 0 8px #ff4fd8,
    0 0 18px #ff4fd8,
    0 0 35px #ff00c8;
}

.lens-outer{
  position:absolute;
  width:55px;
  height:55px;
  border:4px solid #ff4fd8;
  border-radius:50%;
  top:25px;
  left:55px;

  display:flex;
  justify-content:center;
  align-items:center;

  box-shadow:
    0 0 8px #ff4fd8,
    0 0 18px #ff4fd8,
    0 0 35px #ff00c8;
}

.lens-inner{
  width:20px;
  height:20px;
  border-top:4px solid #ff4fd8;
  border-right:4px solid #ff4fd8;
  border-radius:50%;
  transform:rotate(-20deg);

  box-shadow:
    0 0 8px #ff4fd8,
    0 0 18px #ff4fd8;
}

.spark{
  position:absolute;
  right:10px;
  top:5px;
  width:30px;
  height:30px;
  background:#ff7af5;

  clip-path:polygon(
    50% 0%,
    60% 40%,
    100% 50%,
    60% 60%,
    50% 100%,
    40% 60%,
    0% 50%,
    40% 40%
  );

  box-shadow:
    0 0 10px #ff7af5,
    0 0 25px #ff7af5,
    0 0 45px #ff00d4;

  animation:glow 2s infinite ease-in-out;
}

@keyframes glow{
  0%,100%{
    transform:scale(1);
    opacity:1;
  }

  50%{
    transform:scale(1.15);
    opacity:0.7;
  }
}