/* Shared by login.php, forgot-password.php, reset-password.php — pages that
   render outside the normal header/sidebar shell (you're not logged in yet). */

.auth-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100vh;
  padding:20px;
}

.auth-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:5px;
  padding:32px;
  width:100%;
  max-width:360px;
}

.auth-card h1{
  font-size:20px;
  margin:0 0 20px;
}

.auth-card p.auth-subtitle{
  color:var(--muted);
  font-size:13px;
  margin:-12px 0 20px;
}

.auth-card label{
  display:block;
  font-size:13px;
  font-weight:500;
  margin:14px 0 6px;
}

.auth-card input[type=email],
.auth-card input[type=password],
.auth-card input[type=text]{
  width:100%;
  height:38px;
  border:1px solid var(--border);
  border-radius:5px;
  padding:0 12px;
  font-size:14px;
  font-family:inherit;
}

.auth-card .remember{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  font-size:13px;
  font-weight:400;
  color:var(--muted);
}

.auth-card .remember input{
  margin:0;
}

.auth-card button{
  width:100%;
  height:40px;
  margin-top:20px;
  background:var(--blue);
  color:#fff;
  border:0;
  border-radius:5px;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
}

.auth-card button:hover{
  background:var(--blue-dark);
}

.auth-error{
  background:#FEECEC;
  color:#B42318;
  border-radius:5px;
  padding:10px 12px;
  font-size:13px;
  margin-top:14px;
}

.auth-success{
  background:var(--green-light);
  color:var(--green-dark);
  border-radius:5px;
  padding:10px 12px;
  font-size:13px;
  margin-top:14px;
}

.auth-links{
  margin-top:16px;
  font-size:13px;
  text-align:center;
}

.auth-links a{
  color:var(--blue-dark);
}
