/* MyEvo — auth.css : tela de login (opção A) e painel inicial do personal */
.auth-screen, .coach-screen{
  position:fixed; inset:0; z-index:1000;
  display:flex; align-items:center; justify-content:center;
  background:#000; padding:24px;
  font-family:'Inter',system-ui,sans-serif; color:#fff;
}
.auth-card, .coach-wrap{
  width:100%; max-width:360px;
  display:flex; flex-direction:column; gap:12px;
  text-align:center;
}
.auth-logo{ width:140px; align-self:center; margin-bottom:6px; }
.coach-logo{ width:120px; align-self:center; margin-bottom:4px; }

.auth-toggle{
  display:flex; background:#161616; border-radius:12px; padding:4px; margin-bottom:4px;
}
.auth-toggle button{
  flex:1; padding:10px; border:0; border-radius:9px; cursor:pointer;
  background:transparent; color:#9a9a9a; font-weight:600; font-size:15px;
}
.auth-toggle button.on{ background:#F16719; color:#fff; }

.auth-card input{
  width:100%; padding:14px 16px; border-radius:12px;
  border:1px solid #2a2a2a; background:#121212; color:#fff; font-size:16px;
}
.auth-card input::placeholder{ color:#777; }

.auth-primary{
  width:100%; padding:15px; border:0; border-radius:12px; cursor:pointer;
  background:#F16719; color:#fff; font-weight:700; font-size:16px; margin-top:2px;
}
.auth-primary:disabled{ opacity:.6; }
.auth-link{
  background:none; border:0; color:#9a9a9a; cursor:pointer; font-size:14px; padding:6px;
}
.auth-erro{ color:#FF6B5E; font-size:14px; min-height:18px; }

.coach-sub{ color:#bbb; margin:0; }
.coach-msg{ color:#9a9a9a; font-size:15px; line-height:1.5; margin:4px 0 12px; }
.coach-wrap h2{ margin:4px 0 0; font-size:22px; }

.auth-ver{ position:fixed; bottom:14px; left:0; right:0; text-align:center; color:#555; font-size:12px; }

/* Reset de senha */
.auth-sub{ color:#9a9a9a; font-size:13.5px; text-align:center; margin:2px 0 6px; line-height:1.45; }
.auth-ok{ color:#7bd67b; font-size:13px; text-align:center; margin-top:8px; line-height:1.4; }
