body{
  font-family: system-ui, -apple-system, sans-serif;
  background:#f5f7fb;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  height:100vh;
}

.auth-container{
  width:100%;
  max-width:420px;
  padding:20px;
}

.auth-card{
  background:#fff;
  padding:32px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.logo{
  text-align:center;
  font-size:22px;
  font-weight:600;
  margin-bottom:10px;
}

.subtitle{
  text-align:center;
  color:#777;
  font-size:14px;
  margin-bottom:24px;
}

input{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  border-radius:8px;
  margin-bottom:16px;
  font-size:14px;
  box-sizing:border-box;
}

button{
  width:100%;
  padding:12px;
  border:none;
  border-radius:8px;
  background:#fb6813;
  color:#fff;
  font-size:14px;
  cursor:pointer;
}

button:hover{
  opacity:.9;
}

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

.auth-links a{
  color:#555;
  text-decoration:none;
}

.auth-links a:hover{
  text-decoration:underline;
}

.status{
  text-align:center;
  margin-top:12px;
  font-size:14px;
  color:#555;
}