/* login.css — exclusivo da tela de login */
.auth-wrap{
  min-height: calc(100vh - 60px);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding: 48px 16px;
}
.auth-card{
  width: min(520px, 100%);
  background:#fff;
  border:1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px;
}
.auth-card h1{
  margin:0 0 6px 0;
  font-size:22px;
}
.auth-card p{
  margin:0 0 18px 0;
  color: var(--muted);
}
.auth-card .row{
  margin-bottom: 14px;
}
.auth-card .row label{
  display:block;
  font-size:12px;
  color: var(--muted);
  margin: 0 0 6px 0;
}
.auth-actions{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top: 16px;
}
.auth-actions .btn{
  width:100%;
  justify-content:center;
}
