/* static/css/pages/login.css — 로그인 페이지 고유 스타일
   공용 조각은 tokens/base/components/shell 이 담당한다. */

/* ── 로그인 페이지 ─────────────────────────────────────────── */
.lg-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 16px;
}
.lg-card {
  background: var(--bg-surface);
  border-radius: 14px;
  box-shadow: var(--shadow-overlay);
  padding: 40px 36px;
  width: 100%;
  max-width: 380px;
}
.lg-logo { text-align: center; font-size: 2.2rem; margin-bottom: 8px; }
.lg-title {
  text-align: center;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.lg-error {
  background: var(--danger-bg);
  color: var(--danger);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  margin-bottom: 16px;
}
  /* overflow:hidden으로 자식 input 오버플로 차단 */
/* input[type="time"]: 모바일 브라우저 네이티브 최소 너비 강제 제거 */
input[type="time"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.btn-login {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: var(--text-on-accent);
  border: none;
  border-radius: var(--r-md);
  font-size: var(--fs-md);
  cursor: pointer;
  min-height: 48px;
  transition: background var(--motion-base) var(--ease);
  margin-top: 8px;
}
.btn-login:hover { background: var(--accent-hover); }

/* 토큰 정의는 tokens.css로 이동했다. 이 파일에서 :root를 정의하지 않는다. */

.dash-badge {
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 500;
}

.dash-running-loading,

/* 모바일: 특정 컬럼 숨김 */
