*{
  margin:0;
  padding:0;
  box-sizing:border-box
}

body{
  display:flex;
  flex-direction:column;
  min-height:100dvh;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  background:#fff; 
  color:#111827;
}

header{
  display:flex;
  justify-content:center;
  align-items:center;
  height:75px;
  width:100%;
  padding:10px 20px;
  background:#fff;
  border-bottom:1px solid #ebe8e8; 
  box-shadow:0 1px 0 rgba(0,0,0,.06);
}
.nav-bar{
  max-width:1200px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between
}

.logo{
  height:34px;
  width:auto;
  transition:transform .2s ease;
  cursor:pointer
}

.logo:hover{
  transform:translateY(-1px)
}

.conteudo{
  min-height:calc(100dvh - 75px);
  width:100%;
  display:grid;
  place-items:center;
  padding:24px 16px;
}

.login{
  width:min(420px,92%);
  padding:32px 24px 24px;
  text-align:center;
  background:#fff;
  border:1px solid #eef1f6;
  border-radius:20px;
  box-shadow:0 12px 32px rgba(17,24,39,.08);
  color:#44546a;
}

.login h2{
  margin:0 0 6px;
  font-size:28px;
  color:#44546a
}

.login>p{
  margin:0 0 18px;
  font-size:14px;
  color:#a5a5a5
}

.grade{
  display:grid;
  gap:14px
}

.usuario,.senha{
  position:relative;
  text-align:left
}

.icon{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:20px;
  height:20px;
  fill:#44546a;
  opacity:.9;
  pointer-events:none;
}

.senha .icon{
  pointer-events:auto;
  cursor:pointer
}

.usuario input,.senha input{
  width:100%;
  height:52px;
  padding:0 14px 0 44px;
  background:#fff;
  color:#111827;
  border:1px solid #e6e9f0;
  border-radius:12px;
  outline:0;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.usuario input:focus,.senha input:focus{
  border-color:#6b7280;
  box-shadow:0 0 0 4px rgba(238,188,91,.25)
}

.usuario label,.senha label{
  position:absolute;
  left:44px;
  top:50%;
  transform:translateY(-50%);
  font-size:14px;
  color:#6b7280;
  pointer-events:none;
  transition:transform .18s ease,font-size .18s ease,color .18s ease;
}

.usuario input:focus+label,.senha input:focus+label, .usuario input:not(:placeholder-shown)+label,.senha input:not(:placeholder-shown)+label{
  transform:translate(0,-26px) scale(.95);
  font-size:12px;
  color:#44546a;
}

.salvar{
  margin-top:4px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px
}

.salvando{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:#111827
}

.salvando input{
  width:16px;
  height:16px;
  accent-color:#eebc5b
}

.link{
  color:#eebc5b;
  font-size:14px;
  text-decoration:none
}

.link:hover{
  text-decoration:underline
}

.butao{
  margin-top:10px;
  margin-bottom:15px;
  height:52px;
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:0;
  border-radius:999px;
  cursor:pointer;
  background:#44546a;
  color:#fff;
  font-weight:600;
  box-shadow:0 10px 24px rgba(68,84,106,.25);
  transition:transform .06s ease, box-shadow .2s ease,filter .15s ease;
}
.butao:hover{
  filter:brightness(1.05)
}

.butao:active{
  transform:translateY(1px)
}

.register{
  margin-top:20px;
  font-size:14px;
  color:#6b7280
}

.register a{
  color:#eebc5b;
  text-decoration:none
}

.register a:hover{
  text-decoration:underline
}

@media (prefers-reduced-motion:reduce){*{transition:none!important}}
