@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins' , sans-serif;
}

body {
  background: #161623;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative; /* Ensure ::before is positioned relative to body */
}

body::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px; /* Logo size */
  height: 300px;
  background: url('assests/img/soul.PNG') no-repeat center center;
  background-size: contain;
  opacity: 0.2; /* Keep it low for background feel */
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none; /* Allow clicks to pass through */
}



.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 5px white;
  animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}



.container{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  flex-wrap: wrap;
  z-index: 1;
}
.container .card{
  position: relative;
  width: 280px;
  height: 400px;
  margin: 30px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}
/* .container .card .content{
  padding: 20px;
  text-align: center;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.5%;
}
.container .card:hover .content{
  transform: translateY(0px);
  opacity: 1;
} */
.container .card .content h2{
  position: absolute;
  top: -80px;
  right: 30px;
  font-size: 8em;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.container .card img{
  border-radius: 100%;
  width: 250px;
  height: auto;
  
}
.container .card .content p{
  font-size: 1em;
  color: #ffff;
  font-weight: 300;
}
.login-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.login-form input {
  width: 100%;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #fff;
  font-size: 1em;
  outline: none;
  backdrop-filter: blur(5px);
}

.login-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.login-form button {
  padding: 10px 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1em;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.login-form button:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #161623;
}
