/* Charger Inter depuis Google Fonts (si connexion internet disponible) */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* ============================================================
   Screen CMS — Admin stylesheet
   Optimisé pour les grands écrans (55" 1080p et au‑delà)
   ============================================================ */

:root {
  --bg: #0f172a;
  --surface: #1e293b;
  --surface2: #263248;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --accent: #6366f1;
  --accent-h: #818cf8;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: clamp(8px, 0.6vw, 14px);
  /* Sidebar : fluide entre 220px (laptop) et 300px (grand écran) */
  --sidebar-w: clamp(220px, 15vw, 300px);
  /* Typographie de base : fluide entre 14px et 17px */
  --font-base: clamp(14px, 0.95vw, 17px);
  /* Espacement de page : fluide entre 24px et 48px */
  --page-pad: clamp(24px, 2.5vw, 48px);
  --font:
    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: var(--font-base);
  line-height: 1.6;
}

a {
  color: var(--accent-h);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ---- Layout ---- */
.admin-shell {
  display: flex;
  min-height: 100vh;
}

/* ---- Sidebar ---- */
.sidebar {
  width: var(--sidebar-w);
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-logo {
  padding: clamp(16px, 1.5vw, 28px) clamp(12px, 1.2vw, 20px);
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.8vw, 14px);
  border-bottom: 1px solid var(--border);
}

.logo-circle {
  width: clamp(34px, 2.5vw, 48px);
  height: clamp(34px, 2.5vw, 48px);
  border-radius: clamp(8px, 0.7vw, 12px);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: clamp(12px, 0.9vw, 16px);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.sidebar-logo span {
  font-weight: 700;
  font-size: clamp(14px, 1vw, 18px);
}

.sidebar-nav {
  flex: 1;
  padding: clamp(10px, 1vw, 18px) clamp(6px, 0.6vw, 12px);
}

.nav-section {
  margin-bottom: clamp(16px, 1.5vw, 28px);
}

.nav-section-title {
  font-size: clamp(9px, 0.65vw, 12px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 clamp(6px, 0.6vw, 12px) clamp(4px, 0.4vw, 8px);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.6vw, 12px);
  padding: clamp(7px, 0.6vw, 12px) clamp(8px, 0.8vw, 16px);
  border-radius: clamp(6px, 0.5vw, 10px);
  color: var(--muted);
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 500;
  transition:
    background 0.15s,
    color 0.15s;
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--surface2);
  color: var(--text);
  text-decoration: none;
}
.nav-link.active {
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent-h);
}
.nav-link .icon {
  font-size: clamp(14px, 1vw, 18px);
  width: clamp(18px, 1.4vw, 26px);
  text-align: center;
}

.sidebar-foot {
  padding: clamp(10px, 1vw, 18px) clamp(6px, 0.6vw, 12px);
  border-top: 1px solid var(--border);
}

.user-chip {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.6vw, 12px);
  padding: clamp(4px, 0.4vw, 8px) clamp(6px, 0.6vw, 10px);
}
.user-chip .avatar {
  width: clamp(28px, 2vw, 40px);
  height: clamp(28px, 2vw, 40px);
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: clamp(10px, 0.75vw, 14px);
}
.user-chip .info {
  min-width: 0;
}
.user-chip .email {
  font-size: clamp(11px, 0.8vw, 14px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user-chip .role {
  font-size: clamp(10px, 0.7vw, 13px);
  color: var(--muted);
}

/* ---- Main content ---- */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.topbar {
  height: clamp(52px, 4vw, 76px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 2vw, 40px);
  gap: clamp(10px, 1vw, 20px);
  flex-shrink: 0;
}

.topbar h1 {
  font-size: clamp(16px, 1.3vw, 24px);
  font-weight: 700;
}
.topbar .spacer {
  flex: 1;
}

.page-body {
  padding: var(--page-pad);
  flex: 1;
}

/* ---- Cards ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(16px, 1.5vw, 32px);
}

.card + .card {
  margin-top: clamp(12px, 1vw, 24px);
}

.card-title {
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 700;
  margin-bottom: clamp(10px, 1vw, 20px);
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.6vw, 12px);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: clamp(5px, 0.4vw, 8px);
  padding: clamp(7px, 0.55vw, 11px) clamp(14px, 1.1vw, 22px);
  border-radius: clamp(6px, 0.5vw, 10px);
  border: 1px solid transparent;
  font-size: clamp(12px, 0.88vw, 15px);
  font-weight: 600;
  cursor: pointer;
  transition:
    opacity 0.15s,
    background 0.15s,
    transform 0.1s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  opacity: 0.88;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn:active {
  opacity: 0.7;
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-success {
  background: var(--success);
  color: #fff;
}
.btn-danger {
  background: var(--danger);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-sm {
  padding: clamp(4px, 0.35vw, 7px) clamp(10px, 0.8vw, 16px);
  font-size: clamp(11px, 0.78vw, 14px);
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.btn-icon {
  padding: clamp(6px, 0.5vw, 10px) clamp(8px, 0.7vw, 14px);
}

/* ---- Forms ---- */
.field {
  margin-bottom: clamp(12px, 1vw, 20px);
}
.field label {
  display: block;
  font-size: clamp(11px, 0.8vw, 14px);
  color: var(--muted);
  margin-bottom: clamp(4px, 0.35vw, 7px);
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="color"],
input[type="datetime-local"],
select,
textarea {
  width: 100%;
  padding: clamp(8px, 0.65vw, 13px) clamp(10px, 0.9vw, 16px);
  border-radius: clamp(6px, 0.5vw, 10px);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font-family: var(--font);
  font-size: clamp(12px, 0.88vw, 15px);
  transition: border-color 0.15s;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
textarea {
  min-height: clamp(72px, 5vw, 120px);
  resize: vertical;
}
select option {
  background: var(--surface);
}

input[type="color"] {
  padding: 4px 6px;
  height: clamp(36px, 2.6vw, 46px);
  cursor: pointer;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 0.9vw, 18px);
}
.field-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(10px, 0.9vw, 18px);
}

/* ---- Alerts ---- */
.alert {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}
.alert-success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}
.alert-warning {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fcd34d;
}
.alert-info {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
}

/* ---- Badges ---- */
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.badge-admin {
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
}
.badge-editor {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
}
.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
}
.badge-danger {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}
.badge-info {
  background: rgba(99, 102, 241, 0.1);
  color: #c7d2fe;
}
.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: #a7f3d0;
}

/* ---- Tables ---- */
.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}
th {
  text-align: left;
  font-size: clamp(10px, 0.72vw, 13px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: clamp(8px, 0.7vw, 14px) clamp(10px, 0.9vw, 18px);
  border-bottom: 1px solid var(--border);
}
td {
  padding: clamp(10px, 0.85vw, 16px) clamp(10px, 0.9vw, 18px);
  border-bottom: 1px solid var(--border);
  font-size: clamp(12px, 0.88vw, 15px);
}
tr:last-child td {
  border-bottom: 0;
}
tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}

/* ---- Login page ---- */
.login-page {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.login-wrap {
  width: 100%;
  max-width: 400px;
  padding: 16px;
}
.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.login-logo {
  text-align: center;
  margin-bottom: 28px;
}
.login-logo .logo-circle {
  width: 56px;
  height: 56px;
  font-size: 20px;
  border-radius: 16px;
  margin: 0 auto 12px;
}
.login-logo h1 {
  font-size: 22px;
  font-weight: 800;
}
.login-logo p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

/* ---- Tabs (screen editor) ---- */
.tabs-bar {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s;
}
.tab-btn.active {
  color: var(--accent-h);
  border-bottom-color: var(--accent);
}
.tab-btn:hover {
  color: var(--text);
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

/* ---- Screen editor 2-col ---- */
.editor-shell {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 20px;
  min-height: calc(100vh - 100px);
}
.editor-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.editor-preview {
  position: sticky;
  top: 16px;
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.preview-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.preview-iframe {
  flex: 1;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #000;
}

/* ---- Repeating items ---- */
.item-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.item-row {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}
.item-row-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.item-row-header .item-title {
  font-weight: 600;
  font-size: 13px;
  flex: 1;
}
.move-btn {
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}
.move-btn:hover {
  background: var(--surface);
  color: var(--text);
}

/* ---- Dashboard stats ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(clamp(180px, 13vw, 280px), 1fr)
  );
  gap: clamp(12px, 1vw, 22px);
  margin-bottom: clamp(18px, 1.8vw, 36px);
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(14px, 1.3vw, 26px);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.stat-label {
  font-size: clamp(11px, 0.82vw, 14px);
  color: var(--muted);
  margin-bottom: clamp(4px, 0.4vw, 8px);
}
.stat-value {
  font-size: clamp(24px, 2vw, 40px);
  font-weight: 800;
}
.stat-note {
  font-size: clamp(11px, 0.82vw, 14px);
  color: var(--muted);
  margin-top: clamp(2px, 0.3vw, 6px);
}

/* ---- Emergency badge (dashboard) ---- */
.em-info {
  color: #93c5fd;
}
.em-warning {
  color: #fcd34d;
}
.em-critical {
  color: #fca5a5;
}
.em-evac {
  color: #ff4444;
  font-weight: 800;
}

/* ---- Screen cards (list) ---- */
.screen-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(clamp(240px, 18vw, 380px), 1fr)
  );
  gap: clamp(14px, 1.2vw, 26px);
}
.screen-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(16px, 1.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.9vw, 18px);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.screen-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.screen-card-name {
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 20px);
}
.screen-card-slug {
  font-size: clamp(11px, 0.8vw, 14px);
  color: var(--muted);
  font-family: monospace;
}
.screen-card-foot {
  display: flex;
  gap: clamp(6px, 0.6vw, 12px);
  flex-wrap: wrap;
}

/* ---- Upload gallery ---- */
.upload-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(clamp(130px, 10vw, 220px), 1fr)
  );
  gap: clamp(10px, 0.9vw, 18px);
  margin-top: clamp(12px, 1vw, 22px);
}
.upload-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: clamp(6px, 0.5vw, 10px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.upload-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.upload-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.upload-item-info {
  padding: clamp(6px, 0.55vw, 10px);
  font-size: clamp(10px, 0.72vw, 13px);
  color: var(--muted);
  overflow: hidden;
}
.upload-item-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.upload-item-foot {
  padding: clamp(5px, 0.45vw, 8px) clamp(6px, 0.55vw, 10px);
  display: flex;
  gap: clamp(4px, 0.4vw, 8px);
}

/* ---- Pagination ---- */
.pagination {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  align-items: center;
}
.page-btn {
  padding: 5px 11px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
}
.page-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.page-btn:hover {
  background: var(--surface2);
  color: var(--text);
  text-decoration: none;
}

/* ---- Utilities ---- */
.text-muted {
  color: var(--muted);
}
.text-danger {
  color: var(--danger);
}
.text-sm {
  font-size: 12px;
}
.mt-4 {
  margin-top: 4px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-16 {
  margin-top: 16px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-8 {
  gap: 8px;
}
.gap-12 {
  gap: 12px;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.mono {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}
.truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* ---- Lucide icons ---- */
[data-lucide] {
  width: clamp(14px, 1.05vw, 20px);
  height: clamp(14px, 1.05vw, 20px);
  stroke-width: 1.8;
  vertical-align: -2px;
  display: inline-block;
  flex-shrink: 0;
}
.nav-link [data-lucide] {
  width: clamp(15px, 1.1vw, 22px);
  height: clamp(15px, 1.1vw, 22px);
}
.btn [data-lucide] {
  width: clamp(13px, 0.95vw, 18px);
  height: clamp(13px, 0.95vw, 18px);
  vertical-align: -1px;
}
.card-title [data-lucide] {
  width: clamp(15px, 1.1vw, 20px);
  height: clamp(15px, 1.1vw, 20px);
}
.stat-label [data-lucide] {
  width: clamp(12px, 0.85vw, 16px);
  height: clamp(12px, 0.85vw, 16px);
}
.badge [data-lucide] {
  width: clamp(10px, 0.75vw, 14px);
  height: clamp(10px, 0.75vw, 14px);
  vertical-align: -1px;
}

/* ---- Status dot (online/offline) ---- */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}
.status-dot.online {
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e88;
}
.status-dot.offline {
  background: #475569;
}

/* ---- Drag handle hero ratio ---- */
.hero-ratio-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.hero-ratio-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.hero-ratio-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  pointer-events: none;
  transition: width 0.05s;
}
.hero-ratio-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  cursor: grab;
  box-shadow: 0 0 6px #0004;
  transition: left 0.05s;
}
.hero-ratio-thumb:active {
  cursor: grabbing;
}
.hero-ratio-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* ---- WYSIWYG font preview ---- */
.font-preview-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.font-preview-box {
  flex: 1;
  padding: clamp(6px, 0.55vw, 10px) clamp(10px, 0.9vw, 16px);
  background: var(--input-bg, #1e293b);
  border: 1px solid var(--border);
  border-radius: clamp(5px, 0.45vw, 8px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 80px;
  color: var(--text);
  font-size: clamp(12px, 0.88vw, 15px);
}

/* ================================================================
   GRAND ÉCRAN — Media queries complémentaires (55" 1080p = ~40px/cm)
   Les clamp() gèrent la majorité des cas, ces règles affinent
   les rares éléments avec tailles fixes non couvertes ci-dessus.
   ================================================================ */

@media (min-width: 1600px) {
  .alert {
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 10px;
  }
  .badge {
    padding: 3px 11px;
    font-size: 12px;
    border-radius: 999px;
  }
  .status-dot {
    width: 10px;
    height: 10px;
  }
  .pagination {
    gap: 8px;
    margin-top: 22px;
  }
  .page-btn {
    padding: 7px 15px;
    font-size: 13px;
  }
  .divider {
    margin: 22px 0;
  }
  .editor-shell {
    grid-template-columns: clamp(380px, 30vw, 560px) 1fr;
    gap: 28px;
  }
  .tabs-bar {
    gap: 4px;
    margin-bottom: 28px;
  }
  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .item-row {
    padding: 16px;
    border-radius: 10px;
  }
  .login-card {
    padding: 44px;
  }
  .login-logo .logo-circle {
    width: 72px;
    height: 72px;
    font-size: 26px;
    border-radius: 20px;
  }
  .login-logo h1 {
    font-size: 28px;
  }
  .login-logo p {
    font-size: 15px;
  }
  .login-wrap {
    max-width: 480px;
  }
}

@media (min-width: 1920px) {
  /* Pour les très grands ou très denses écrans */
  html {
    font-size: 16px;
  }
  .alert {
    padding: 16px 24px;
    font-size: 15px;
  }
  .badge {
    padding: 4px 13px;
    font-size: 13px;
  }
  .move-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  .page-btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}
