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

html,body{
  height:100%;
  font-family:system-ui,-apple-system,BlinkMacSystemFont;
  background:#020617;
  color:#e5e7eb;
}

/* ================= CENTER WRAPPER ================= */
.auth-wrapper{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

/* ================= CARD ================= */
.auth-card{
  width:100%;
  max-width:420px;
  min-height:620px;

  background:linear-gradient(180deg,#0f172a,#020617);
  border:1px solid rgba(255,255,255,.08);
  border-radius:26px;
  padding:40px 30px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  box-shadow:
    0 30px 70px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(255,255,255,.03);
}

/* ================= TOP ================= */
.auth-top{
  margin-top:10px;
}

/* ================= BRAND ================= */
.brand{
  text-align:center;
  margin-bottom:40px;
}

.brand h1{
  font-size:32px;
  font-weight:800;
  letter-spacing:.5px;
}

.brand h1 span{
  color:#22c55e;
}

.brand p{
  margin-top:10px;
  font-size:14px;
  color:#94a3b8;
}

/* ================= FORM ================= */
.form-group{
  margin-bottom:20px;
}

input{
  width:100%;
  height:56px;
  padding:0 16px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-size:15px;
  outline:none;
  transition:.2s ease;
}

input::placeholder{
  color:#64748b;
}

input:focus{
  border-color:#22c55e;
  background:rgba(34,197,94,.06);
  box-shadow:0 0 0 2px rgba(34,197,94,.25);
}

/* ================= BUTTON ================= */
button{
  width:100%;
  height:56px;
  margin-top:14px;

  border:none;
  border-radius:16px;
  background:linear-gradient(180deg,#22c55e,#16a34a);

  color:#022c22;
  font-size:17px;
  font-weight:800;
  cursor:pointer;

  box-shadow:0 10px 30px rgba(34,197,94,.35);
  transition:.15s ease;
}

button:active{
  transform:scale(.97);
}

/* ================= FOOTER ================= */
.auth-footer{
  text-align:center;
  font-size:13px;
  color:#94a3b8;
  padding-bottom:8px;
}

/* ================= MOBILE ================= */
@media(max-width:360px){
  .auth-card{
    min-height:560px;
    padding:32px 22px;
  }
}


