/* ptui-auth.css — CHỈ phần RIÊNG của các trang auth công khai (console-login, set-password,
   forgot-password, OIDC login/OTP). Font Inter + token + component .ptui-* lấy từ Peram UI Library
   qua <link rel="stylesheet" href="/peram-ui/styles.css"> đặt TRƯỚC file này (src/peramUiAssets.js).
   25/09/2026: bỏ bản chép tay token/nút/input + font nhúng sai họ (nhúng font khác nhưng token đòi
   "Inter" ⇒ trang auth từng rơi về font hệ thống).
   Dark theo HỆ ĐIỀU HÀNH: trang mở thẳng từ email, không có nút đổi theme ⇒ mỗi trang có 1 dòng
   script đặt data-theme="dark" khi prefers-color-scheme: dark; GIÁ TRỊ màu do thư viện quyết. */
:root{color-scheme:light}
:root[data-theme="dark"]{color-scheme:dark}

/* ===== Base ===== */
*{box-sizing:border-box}
body{margin:0;font-family:var(--ptui-font-sans);background:var(--ptui-bg);color:var(--ptui-text);
  font-size:14px;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
button{font-family:inherit;cursor:pointer}

/* Nút full-width của form đăng nhập — thư viện không có biến thể này (cùng quy ước với master-console). */
.ptui-btn-full{width:100%;min-height:42px}
