:root {
  --primary: #428bca;
  --secondary: #428bca;
  --accent: #15e0ff;
  --text-on-dark: #fff;
  --card-radius: 12px;
}


.auth-card {
  position: relative;
    padding: 50px 0;
  width: 100%;
  perspective: 1200px;
  margin-top: 16px;
  
}

.auth-inner {
  position: relative;
  width: 100%;
  min-height: 360px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

/* States */
.auth-card.show-login .auth-inner {
  transform: rotateY(0deg);
}
.auth-card.show-register .auth-inner {
  transform: rotateY(-180deg);  /* Register panel on back side */
}
.auth-card.show-forgot .auth-inner {
  transform: rotateY(-90deg);   /* Forgot panel on side */
}

/* Panels */
.panel {
  position: absolute;
  inset: 0;
  padding: 0 1.25rem;
  background: #fff;
  color: #333;
  border-radius: var(--card-radius, 12px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Face positions */
.panel-login {
  transform: rotateY(0deg);
  z-index: 2;
}
.panel-register {
  transform: rotateY(180deg);
}
.panel-forgot {
  transform: rotateY(90deg);
}



body {
  font-family: "Poppins", sans-serif;
  background: #000;
  color: #fff;
}


/* .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 90%;
  transform: translateX(-90%) rotate(-6deg);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0, 114, 255, 0.4), rgba(0, 0, 0, 0) 40%);
  filter: blur(100px);
  z-index: 0;
} */

/* Ensure content stays above the gradient */
.hero > * {
  position: relative;
  z-index: 2;
}


.hero {
  min-height: 100vh;
  /* background: radial-gradient(circle at 0% 0%, #0c1b2a 0%, #000 70%); */
  overflow: hidden;
  position: relative;
  padding-bottom: 120px;
}

/* .tagline-tilt {
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.1;
  transform: rotate(-8deg);
  display: inline-block;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 2rem;
} */

/* .tagline-tilt.sub {
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  transform: rotate(-8deg);
  font-weight: 700;
} */

.artwork {
  position: relative;
  margin-top: 2rem;
}
.artwork img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}
/* .glow-box {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid rgba(21, 224, 255, 0.25);
  border-radius: 12px;
  pointer-events: none;
} */

/* Login Card */
.login-card {
  background: #fff;
  color: #333;
  border-radius: var(--card-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  padding: 2rem 1.75rem;
  width: 100%;
  max-width: 420px;
}

/* Input Icon */
.has-icon {
  position: relative;
}
.has-icon .form-control {
  /* padding-left: 2.6rem; */
  /* padding-right: 2.6rem; */
  height: 48px;
  border-radius: 10px;
}
.input-icon {
  position: absolute;
  /* left: 0.9rem; */
  top: 50%;
  right: 0.9rem;
  transform: translateY(-50%);
  color: #202121;
  font-size: 1rem;
}
.field-icon {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: #9aa0a6;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

/* Buttons */
.btn-custom {
  background: var(--secondary);
  padding: 8px 0;
  color: white;
  font-size: 17px;
  text-decoration: none;
 
}

.btn-custom > a{
    padding-left: 5px;

}

.form-label {
  margin-bottom: 0.35rem;
}
.small { font-size: .875rem !important; }

/* Help Box */
.help-box {
  color: #fff;
  margin-top: 2rem;
  padding-left: 1.5rem;
  position: relative;
}
.help-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
}
.help-box h6 {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 0.75rem;
}
.help-box ol {
  margin-bottom: 0;
  padding-left: 1rem;
  font-size: 18px;
}

/* Categories */
.categories {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: #000; */
  padding: 0.85rem 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
  white-space: nowrap;
}
.categories span {
  color: #fff;
  opacity: 0.85;
}
.categories .sep {
  margin: 0 0.4rem;
  opacity: 0.35;
}



@media (max-width: 991.98px) {
  .hero {
    padding-bottom: 180px;
  }
  .help-box {
    margin-top: 1.5rem;
  }
}
