/* =========================
   GLOBAL
========================= */

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

:root{

  --green:#00ff9d;
  --bg:#060b08;
  --card:#0f1511;
  --text:#ffffff;
  --muted:#9ca3af;

}

body{

  font-family:
    Inter,
    sans-serif;

  background:
    linear-gradient(
      135deg,
      #050706,
      #0d1510,
      #111915
    );

  color:white;

  min-height:100vh;

  overflow-x:hidden;

  position:relative;

}

/* =========================
   GRID OVERLAY
========================= */

.grid-overlay{

  position:absolute;

  inset:0;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.03) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.03) 1px,
      transparent 1px
    );

  background-size:40px 40px;

  z-index:0;

}

/* =========================
   BACKGROUND BLOBS
========================= */

.bg-blur{

  position:absolute;

  border-radius:50%;

  filter:blur(120px);

  opacity:.18;

}

.blur-one{

  width:450px;
  height:450px;

  background:#00ff9d;

  top:-120px;
  left:-120px;

}

.blur-two{

  width:450px;
  height:450px;

  background:#6b4f3b;

  right:-120px;
  bottom:-120px;

}

/* =========================
   WRAPPER
========================= */

.signup-wrapper{

  position:relative;

  z-index:2;

  width:90%;

  margin:auto;

  min-height:100vh;

  display:grid;

  grid-template-columns:
    1.1fr 1fr;

  align-items:center;

  gap:80px;

}

/* =========================
   LEFT
========================= */

.signup-left{

  max-width:700px;

}

.logo{

  display:inline-block;

  margin-bottom:40px;

  text-decoration:none;

  color:white;

  font-size:1.8rem;

  font-weight:800;

}

.signup-badge{

  display:inline-block;

  padding:
    10px 18px;

  border-radius:999px;

  background:
    rgba(255,255,255,.04);

  border:
    1px solid rgba(255,255,255,.08);

  color:var(--green);

  margin-bottom:30px;

}

.signup-left h1{

  font-size:4.2rem;

  line-height:1.05;

  margin-bottom:30px;

}

.signup-left p{

  color:var(--muted);

  line-height:1.9;

  font-size:1.1rem;

  margin-bottom:50px;

}

/* STATS */

.signup-stats{

  display:flex;

  gap:25px;

  flex-wrap:wrap;

}

.stat-box{

  min-width:160px;

  padding:25px;

  border-radius:24px;

  background:
    rgba(255,255,255,.03);

  border:
    1px solid rgba(255,255,255,.05);

  backdrop-filter:blur(20px);

}

.stat-box h3{

  font-size:2rem;

  margin-bottom:10px;

}

.stat-box span{

  color:var(--muted);

}

/* =========================
   RIGHT
========================= */

.signup-right{

  display:flex;

  justify-content:center;

}

.signup-card{

  position:relative;

  width:100%;

  max-width:520px;

  padding:50px;

  border-radius:35px;

  background:
    rgba(255,255,255,.04);

  border:
    1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(25px);

  overflow:hidden;

}

/* GLOW */

.card-glow{

  position:absolute;

  width:250px;
  height:250px;

  background:var(--green);

  filter:blur(120px);

  opacity:.08;

  top:-120px;
  right:-120px;

}

/* TITLES */

.signup-card h2{

  font-size:2.5rem;

  margin-bottom:10px;

}

.signup-subtitle{

  color:var(--muted);

  margin-bottom:35px;

}

/* FORM */

.signup-form{

  display:flex;

  flex-direction:column;

  gap:24px;

}

/* INPUT */

.input-group{

  display:flex;

  flex-direction:column;

  gap:12px;

}

.input-group label{

  color:#d1d5db;

}

.input-group input{

  height:60px;

  border:none;

  outline:none;

  border-radius:18px;

  padding:0 20px;

  color:white;

  background:
    rgba(255,255,255,.04);

  border:
    1px solid rgba(255,255,255,.08);

  transition:.3s;

}

.input-group input:focus{

  border-color:
    rgba(0,255,157,.25);

  box-shadow:
    0 0 25px rgba(0,255,157,.08);

}

/* PASSWORD */

.password-wrap{

  position:relative;

}

.toggle-password{

  position:absolute;

  top:50%;
  right:18px;

  transform:translateY(-50%);

  border:none;

  background:none;

  cursor:pointer;

  color:#aaa;

}

/* STRENGTH */

.strength-meter{

  width:100%;

  height:8px;

  border-radius:999px;

  background:
    rgba(255,255,255,.06);

  overflow:hidden;

}

.strength-bar{

  width:0%;

  height:100%;

  background:red;

  transition:.3s;

}

.strength-text{

  color:var(--muted);

  font-size:.9rem;

}

/* TERMS */

.terms-wrap{

  display:flex;

  gap:10px;

  color:#d1d5db;

  font-size:.95rem;

}

/* BUTTON */

.signup-btn{

  height:60px;

  border:none;

  border-radius:18px;

  background:
    linear-gradient(
      135deg,
      #00ff9d,
      #00d97f
    );

  color:black;

  font-size:1rem;

  font-weight:800;

  cursor:pointer;

  transition:.35s;

}

.signup-btn:hover{

  transform:
    translateY(-4px);

  box-shadow:
    0 18px 40px rgba(0,255,157,.18);

}

/* FOOTER */

.signup-footer{

  margin-top:35px;

  text-align:center;

  color:#d1d5db;

}

.signup-footer a{

  color:var(--green);

  text-decoration:none;

  font-weight:700;

}

/* FLASH */

.flash-message{

  padding:15px;

  border-radius:14px;

  margin-bottom:20px;

}

.flash-message.success{

  background:
    rgba(0,255,157,.1);

  border:
    1px solid rgba(0,255,157,.2);

  color:#00ff9d;

}

.flash-message.error{

  background:
    rgba(255,0,0,.1);

  border:
    1px solid rgba(255,0,0,.2);

  color:#ff7676;

}

/* RESPONSIVE */

@media(max-width:1100px){

  .signup-wrapper{

    grid-template-columns:1fr;

    padding:
      120px 0 60px;

  }

  .signup-left{

    display:none;

  }

}

@media(max-width:600px){

  .signup-card{

    padding:35px 25px;

    border-radius:28px;

  }

  .signup-card h2{

    font-size:2rem;

  }

}