/* =========================
   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;

  overflow:hidden;

  min-height:100vh;

}

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

.bg-blur{

  position:absolute;

  border-radius:50%;

  filter:blur(140px);

  opacity:.18;

}

.blur-one{

  width:450px;
  height:450px;

  background:#00ff9d;

  top:-100px;
  left:-100px;

}

.blur-two{

  width:450px;
  height:450px;

  background:#6b4f3b;

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

}

/* =========================
   LAYOUT
========================= */

.auth-wrapper{

  position:relative;

  z-index:2;

  width:90%;

  margin:auto;

  min-height:100vh;

  display:grid;

  grid-template-columns:
    1.1fr 1fr;

  gap:80px;

  align-items:center;

}

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

.auth-left{

  max-width:700px;

}

.logo{

  text-decoration:none;

  color:white;

  font-size:1.8rem;

  font-weight:800;

  display:inline-block;

  margin-bottom:40px;

}

.auth-tag{

  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;

}

.auth-left h1{

  font-size:4.2rem;

  line-height:1.1;

  margin-bottom:30px;

}

.auth-left p{

  color:var(--muted);

  font-size:1.1rem;

  line-height:1.9;

  margin-bottom:45px;

}

/* FEATURES */

.auth-features{

  display:grid;

  grid-template-columns:
    repeat(2,1fr);

  gap:20px;

}

.feature-item{

  padding:20px;

  border-radius:18px;

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

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

  backdrop-filter:blur(15px);

}

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

.auth-right{

  display:flex;

  justify-content:center;

}

.auth-card{

  position:relative;

  width:100%;

  max-width:500px;

  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);

  opacity:.08;

  filter:blur(120px);

  top:-100px;
  right:-100px;

}

/* =========================
   TITLES
========================= */

.auth-card h2{

  font-size:2.5rem;

  margin-bottom:12px;

}

.auth-subtitle{

  color:var(--muted);

  margin-bottom:35px;

}

/* =========================
   FORM
========================= */

.auth-form{

  display:flex;

  flex-direction:column;

  gap:24px;

}

/* INPUT GROUP */

.input-group{

  display:flex;

  flex-direction:column;

  gap:12px;

}

.input-group label{

  font-size:.95rem;

  color:#d1d5db;

}

.input-group input{

  height:60px;

  border:none;

  outline:none;

  border-radius:18px;

  padding:0 20px;

  font-size:1rem;

  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,.35);

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

}

/* PASSWORD */

.password-wrap{

  position:relative;

}

.toggle-password{

  position:absolute;

  top:50%;
  right:18px;

  transform:translateY(-50%);

  background:none;

  border:none;

  cursor:pointer;

  color:#aaa;

  font-size:1rem;

}

/* OPTIONS */

.form-options{

  display:flex;

  justify-content:space-between;

  align-items:center;

  font-size:.95rem;

}

.form-options a{

  color:var(--green);

  text-decoration:none;

}

.remember-wrap{

  display:flex;

  align-items:center;

  gap:10px;

  color:#d1d5db;

}

/* BUTTON */

.auth-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;

}

.auth-btn:hover{

  transform:
    translateY(-4px);

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

}

/* FOOTER */

.auth-footer{

  margin-top:35px;

  text-align:center;

  color:#d1d5db;

}

.auth-footer a{

  color:var(--green);

  text-decoration:none;

  font-weight:700;

}

/* =========================
   FLASH
========================= */

.flash-message{

  padding:16px;

  border-radius:14px;

  margin-bottom:25px;

  font-size:.95rem;

}

.flash-message.success{

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

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

  color:#00ff9d;

}

.flash-message.error{

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

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

  color:#ff7676;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .auth-wrapper{

    grid-template-columns:1fr;

    padding:
      120px 0 60px;

  }

  .auth-left{

    display:none;

  }

}

@media(max-width:600px){

  .auth-card{

    padding:35px 25px;

    border-radius:28px;

  }

  .auth-card h2{

    font-size:2rem;

  }

}