/* =========================================================
   GV GLOBAL — Member Forgot / Reset Password (standalone card)
   ========================================================= */

.auth-standalone{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--light-bg);
  padding:40px 20px;
}
.auth-standalone .login-card{
  text-align:center;
}
.auth-standalone .login-card .btn-block{margin-top:6px;}
.auth-steps{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-bottom:22px;
}
.auth-steps span{
  width:28px; height:4px; border-radius:4px;
  background:#e6e6e6;
}
.auth-steps span.active{background:var(--red);}
.auth-note{
  background:rgba(212,175,55,0.1);
  border:1px solid rgba(212,175,55,0.35);
  color:#7a5c00;
  border-radius:10px;
  padding:12px 14px;
  font-size:12.5px;
  text-align:left;
  margin-bottom:20px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.auth-note i{margin-top:2px;}
.auth-back-link{
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; font-weight:600; color:var(--secondary-text);
  text-decoration:none; margin-top:18px;
}
.auth-back-link:hover{color:var(--red);}
