.auth-shell{
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--brand-green-deep);
  padding: 24px;
}
.auth-card{
  width: 100%; max-width: 380px; background: var(--surface); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 36px 32px;
}
.auth-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.auth-title{ font-size: 20px; font-weight: 700; margin: 0 0 4px; }
.auth-sub{ font-size: 13px; color: var(--text-secondary); margin: 0 0 24px; }
.auth-field{ margin-bottom: 16px; }
.auth-footer-links{ display: flex; justify-content: space-between; margin-top: 16px; font-size: 12.5px; }
.auth-footer-links a{ color: var(--accent-2); text-decoration: none; font-weight: 600; }
.auth-footer-links a:hover{ text-decoration: underline; }
.auth-remember{ display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }
.auth-remember input{ accent-color: var(--brand-green); width: 15px; height: 15px; }
