html, body {
    touch-action: manipulation;
    -ms-touch-action: manipulation;
   }
   
   body {
    margin: 0;
    height: 100vh;
    background: #0e0e0e;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
 
  }

.boxx {
margin-top: 12%;
  width: 50%;
  padding: 10px;
  height: 70%;
 background: linear-gradient(90deg, rgb(49, 49, 49), rgb(82, 82, 82));
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  border-radius: 15px;
   box-shadow: 5 0 10px rgba(0,0,0,0.2);
  
}
.boxx::-webkit-scrollbar {
  display: none;
}

 .login-box {
      background: white;
      padding: 20px;
      width: 250px;
      margin: auto;
      border-radius: 10px;
      box-shadow: 0 0 10px black;
    }

     input {
      width: 40%;
      padding: 8px;
      margin: 8px 0;
      display: block;
      margin: auto;
     box-shadow: 5px 0px 10px rgb(255, 0, 0), -5px 0px 10px rgb(132, 0, 255), 5px -2px 10px cyan;

    }

    .btn {
     background: rgb(20, 20, 20);
border: solid rgba(0, 0, 0, 0.479);
 transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  font-family: Arial, Helvetica, sans-serif;
   position: absolute;
  width: 40%;
  color: white;
  text-decoration: none;
  left: 30%;
  height: 10%;
    }
  .btn:hover {
     background: white;
  color: #4e54c8;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
    
    .btn2 {
        background: none;
        box-shadow: none;
        border: none;
 transition: all 0.3s ease;
  font-family: Arial, Helvetica, sans-serif;
   position: absolute;
  width: 40%;
  color: white;
  text-decoration: none;
  left: 30%;
  height: 10%;
  bottom: 10%;
    }
    .btn2:hover {
  color: #ffffff;
  transform: scale(1.1);
  text-shadow: 0 0 20px white
    }
    .namee {
        color: white;
        font-family: Arial, Helvetica, sans-serif;
        display: flex;
  justify-content: center;  /* horizontal */
  align-items: center;      /* vertical */
  text-align: center;
    }

    .boxx h1 {
color: white;
     text-shadow: 5px 0px 10px rgb(255, 0, 0), -5px 0px 10px blue, 5px -2px 10px cyan;
     font-family: Arial, Helvetica, sans-serif;
     text-align: center ;
    }
     .passs {
        color: white;
        font-family: Arial, Helvetica, sans-serif;
        display: flex;
  justify-content: center;  /* horizontal */
  align-items: center;      /* vertical */
  text-align: center;
    }
#loader {
  position: fixed; inset: 0;
  display: flex; justify-content: center; align-items: center;
  background: #0a0a0a; z-index: 9999;
 
  
}
.text {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0;
  text-align: center;
  top: auto;
  animation: fadeText .5s ease .3s forwards;
}
.spinner {
  background-image: linear-gradient(rgb(175, 174, 174) 35%,rgb(255, 255, 255));
  width: 100px;
  height: 100px;
  animation: spinning82341 1.7s linear infinite;
  text-align: center;
  border-radius: 50px;
  filter: blur(1px);
  box-shadow: 0px -5px 20px 0px rgb(192, 190, 190), 0px 5px 20px 0px rgb(255, 255, 255);
}

.spinner1 {
  background-color: rgb(36, 36, 36);
  width: 100px;
  height: 100px;
  border-radius: 50px;
  filter: blur(10px);
}

@keyframes spinning82341 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn { from{opacity:0}to{opacity:1}}
@keyframes fadeText { to {opacity: 1 }}
@keyframes popUp {to {transform:scale(1)}}
@keyframes fadeOut { to {opacity:0;visibility:hidden;} }



    body {
        height: 100vh;
        overflow: hidden;
        background: #0f0f1a;
    }

    .background {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
        filter: blur(80px);
    }

    .blob {
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        opacity: 0.7;
        animation: move 20s infinite alternate ease-in-out;
    }

    .blob:nth-child(1) {
        background: #ff6ec4;
        top: 10%;
        left: 10%;
        animation-duration: 25s;
    }

    .blob:nth-child(2) {
        background: #7873f5;
        top: 50%;
        left: 60%;
        animation-duration: 30s;
    }

    .blob:nth-child(3) {
        background: #4ade80;
        top: 70%;
        left: 20%;
        animation-duration: 22s;
    }

    .blob:nth-child(4) {
        background: #22d3ee;
        top: 30%;
        left: 75%;
        animation-duration: 28s;
    }

    @keyframes move {
        0% {
            transform: translate(0, 0) scale(1);
        }
        50% {
            transform: translate(100px, -150px) scale(1.2);
        }
        100% {
            transform: translate(-120px, 100px) scale(0.9);
        }
    }

    /* Optional glass overlay */
    .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(120px);
        background: rgba(255, 255, 255, 0.05);
    }