*{box-sizing:border-box}
html,body{margin:0;padding:0;height:100%}
body{
  font-family:"PingFang SC","Microsoft YaHei",Arial,sans-serif;
  background:#f7f7f8;
  color:#222;
}
.auth-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.auth-card{
  width:100%;
  max-width:420px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  padding:32px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}
.auth-logo{
  font-size:14px;
  font-weight:700;
  color:#10a37f;
  margin-bottom:14px;
}
.auth-card h1{
  margin:0;
  font-size:28px;
}
.auth-sub{
  margin:10px 0 24px;
  color:#6b7280;
  font-size:14px;
}
.auth-card input{
  width:100%;
  padding:14px 15px;
  margin:0 0 12px;
  border:1px solid #d1d5db;
  border-radius:12px;
  background:#fff;
  outline:none;
  font-size:15px;
}
.auth-card input:focus{
  border-color:#10a37f;
  box-shadow:0 0 0 3px rgba(16,163,127,.12);
}
.auth-card button{
  width:100%;
  padding:14px 16px;
  border:none;
  border-radius:12px;
  background:#10a37f;
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}
.auth-foot{
  margin-top:18px;
  color:#6b7280;
  font-size:14px;
}
.auth-foot a{
  color:#10a37f;
  text-decoration:none;
}