/* ===== Internship System — Glassmorphism Design System =====
   Dark glass by default · light frosted glass via [data-theme="light"]
   Accents: red glow + indigo/navy. Gen-Z modern UI.
*/

/* ---------------- Theme tokens ---------------- */
:root,
:root[data-theme="dark"] {
  color-scheme: dark;
  --radius: 20px;
  --radius-sm: 13px;

  --bg-0: #070a14;
  --blob-1: rgba(91, 108, 255, .22);
  --blob-2: rgba(255, 59, 92, .18);
  --blob-3: rgba(56, 189, 248, .10);

  --text: #eaf0ff;
  --text-soft: #c4ccea;
  --muted: #8b97bb;

  --glass: rgba(255, 255, 255, .055);
  --glass-2: rgba(255, 255, 255, .085);
  --glass-border: rgba(255, 255, 255, .12);
  --glass-border-2: rgba(255, 255, 255, .20);
  --blur: 18px;

  --input-bg: rgba(255, 255, 255, .06);
  --row-hover: rgba(255, 255, 255, .045);
  --thead-bg: rgba(255, 255, 255, .025);
  --line: rgba(255, 255, 255, .08);

  --sidebar-bg: rgba(255, 255, 255, .045);
  --topbar-bg: rgba(10, 14, 26, .55);

  --shadow: 0 10px 40px rgba(0, 0, 0, .45);
  --shadow-sm: 0 4px 18px rgba(0, 0, 0, .35);
  --modal-bg: rgba(16, 22, 40, .92);
  --opt-bg: #141a30;

  --accent: #ff3b5c;        /* red   */
  --accent-2: #6b7bff;      /* indigo/navy glow */
  --accent-glow: rgba(255, 59, 92, .45);
  --green: #28d18b;
  --amber: #ffb648;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg-0: #eef1fb;
  --blob-1: rgba(120, 140, 255, .35);
  --blob-2: rgba(255, 110, 140, .25);
  --blob-3: rgba(80, 200, 255, .20);

  --text: #131a30;
  --text-soft: #2b3658;
  --muted: #5d6886;

  --glass: rgba(255, 255, 255, .55);
  --glass-2: rgba(255, 255, 255, .72);
  --glass-border: rgba(255, 255, 255, .85);
  --glass-border-2: rgba(21, 35, 63, .10);

  --input-bg: rgba(255, 255, 255, .75);
  --row-hover: rgba(21, 35, 63, .035);
  --thead-bg: rgba(255, 255, 255, .45);
  --line: rgba(21, 35, 63, .10);

  --sidebar-bg: rgba(255, 255, 255, .55);
  --topbar-bg: rgba(255, 255, 255, .55);

  --shadow: 0 10px 40px rgba(21, 35, 63, .12);
  --shadow-sm: 0 4px 18px rgba(21, 35, 63, .08);
  --modal-bg: rgba(255, 255, 255, .97);
  --opt-bg: #ffffff;

  --accent: #e11d48;
  --accent-2: #4f5dff;
  --accent-glow: rgba(225, 29, 72, .30);
  --green: #12a96e;
  --amber: #d98512;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.5;
  min-height: 100vh;
  background:
    radial-gradient(900px 620px at 8% -12%, var(--blob-1), transparent 60%),
    radial-gradient(820px 600px at 112% 4%, var(--blob-2), transparent 55%),
    radial-gradient(700px 700px at 75% 115%, var(--blob-3), transparent 60%),
    var(--bg-0);
  background-attachment: fixed;
  transition: background-color .3s ease, color .3s ease;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { opacity: .85; }

/* ---------------- Glass utility ---------------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(150%);
}

/* ---------------- App shell ---------------- */
.app { display: flex; min-height: 100vh; }

.sidebar {
  width: 252px;
  position: fixed; top: 0; bottom: 0; left: 0;
  display: flex; flex-direction: column;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--glass-border);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  z-index: 10;
}
.sidebar .brand {
  padding: 22px 22px;
  display: flex; align-items: center; gap: 11px;
  border-bottom: 1px solid var(--line);
}
.sidebar .brand .logo {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), #ff7a8c);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 17px;
  box-shadow: 0 6px 18px var(--accent-glow);
}
.sidebar .brand b { color: var(--text); font-size: 15px; line-height: 1.1; }
.sidebar .brand span { display: block; color: var(--muted); font-size: 11px; }
.sidebar .role-pill {
  margin: 16px 22px 8px; font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); font-weight: 700;
}
.nav { padding: 4px 12px 12px; flex: 1; overflow-y: auto; }
.nav-section { margin-top: 14px; }
.nav-section:first-child { margin-top: 4px; }
.nav-group {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; opacity: .8;
  margin: 0 0 4px; padding: 6px 12px; border-radius: 9px; transition: .15s;
}
.nav-group:hover { opacity: 1; background: var(--glass); color: var(--text-soft); }
.nav-group .chev { width: 14px; height: 14px; opacity: .7; transition: transform .25s ease; }
.nav-section.collapsed .nav-group .chev { transform: rotate(-90deg); }
.nav-items { overflow: hidden; max-height: 600px; transition: max-height .3s ease, opacity .2s ease; }
.nav-section.collapsed .nav-items { max-height: 0; opacity: 0; }
.nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; margin: 3px 0; border-radius: 12px;
  color: var(--text-soft); font-weight: 500; transition: .18s;
  border: 1px solid transparent;
}
.nav a .ic { display: inline-flex; width: 19px; height: 19px; flex: none; opacity: .9; }
.nav a .ic svg { width: 19px; height: 19px; display: block; }
.nav a:hover { background: var(--glass-2); color: var(--text); opacity: 1; }
.nav a.active {
  background: linear-gradient(135deg, var(--accent), #ff6178);
  color: #fff;
  box-shadow: 0 8px 22px var(--accent-glow);
}
.sidebar .foot { padding: 16px 18px; border-top: 1px solid var(--line); font-size: 12px; }
.sidebar .foot .who { color: var(--text); font-weight: 600; }
.sidebar .foot .mail { color: var(--muted); font-size: 11px; word-break: break-all; margin-bottom: 10px; }

.main { flex: 1; margin-left: 252px; min-width: 0; }
.topbar {
  height: 64px; position: sticky; top: 0; z-index: 6;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 26px;
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}
.topbar h1 {
  font-size: 19px; margin: 0; font-weight: 700;
  background: linear-gradient(90deg, var(--text), var(--muted));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.topbar .actions { display: flex; align-items: center; gap: 12px; }
.content { padding: 28px; max-width: 1500px; margin: 0 auto; }

/* theme toggle button */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 12px; cursor: pointer;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: 17px; display: grid; place-items: center; transition: .2s; color: var(--text);
}
.theme-toggle:hover { background: var(--glass-2); transform: translateY(-1px); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 17px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 600; font-size: 13.5px; cursor: pointer; transition: .18s;
  background: linear-gradient(135deg, var(--accent-2), #8a96ff);
  color: #fff; box-shadow: 0 8px 22px rgba(107, 123, 255, .30);
}
.btn:hover { transform: translateY(-1px); opacity: .95; }
.btn-red { background: linear-gradient(135deg, var(--accent), #ff6178); box-shadow: 0 8px 22px var(--accent-glow); }
.btn-green { background: linear-gradient(135deg, var(--green), #4fe3a6); box-shadow: 0 8px 22px rgba(40, 209, 139, .30); }
.btn-ghost {
  background: var(--glass); color: var(--text); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: none;
}
.btn-ghost:hover { background: var(--glass-2); }
.btn-sm { padding: 7px 12px; font-size: 12.5px; border-radius: 10px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------------- Cards ---------------- */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(150%);
  margin-bottom: 22px; overflow: hidden;
}
.card .card-head {
  padding: 17px 22px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.card .card-head h3 { margin: 0; font-size: 15px; color: var(--text); font-weight: 700; }
.card .card-body { padding: 22px; }
.card .card-body.tight { padding: 0; }

/* ---------------- Stat grid ---------------- */
.stat-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 26px;
}
.stat {
  position: relative; overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(var(--blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(150%);
  transition: .2s;
}
.stat:hover { transform: translateY(-3px); border-color: var(--glass-border-2); }
.stat::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--accent-2); opacity: .18; filter: blur(28px);
}
.stat.red::after   { background: var(--accent); }
.stat.green::after { background: var(--green); }
.stat.amber::after { background: var(--amber); }
.stat .label { color: var(--muted); font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em; }
.stat .value { font-size: 32px; font-weight: 800; color: var(--text); margin-top: 8px; letter-spacing: -.02em; }
.stat .sub { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ---------------- Tables ---------------- */
.table-search-bar { padding: 14px 18px; border-bottom: 1px solid var(--line); }
.table-search-bar .table-search { width: 100%; max-width: none; display: block; }
.modal-body .table-search-bar { padding: 0 0 12px; border-bottom: none; }
.js-noresults td { text-align: center; padding: 28px; color: var(--muted); }
.table-wrap { overflow-x: auto; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.tbl th {
  text-align: left; padding: 13px 18px; background: var(--thead-bg);
  color: var(--muted); font-weight: 700; font-size: 11.5px;
  text-transform: uppercase; letter-spacing: .04em;
  border-bottom: 1px solid var(--line);
}
table.tbl td { padding: 13px 18px; border-bottom: 1px solid var(--line); vertical-align: middle; color: var(--text); }
table.tbl tr:last-child td { border-bottom: none; }
table.tbl tr:hover td { background: var(--row-hover); }

/* ---------------- Badges ---------------- */
.badge {
  display: inline-block; padding: 4px 11px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; text-transform: capitalize;
  border: 1px solid transparent; backdrop-filter: blur(6px);
}
.badge.pending,   .badge.scheduled, .badge.assigned { background: rgba(255,182,72,.16); color: #ffc066; border-color: rgba(255,182,72,.32); }
.badge.active,    .badge.approved,  .badge.completed,
.badge.report_submitted                              { background: rgba(40,209,139,.16); color: #45e3a3; border-color: rgba(40,209,139,.32); }
.badge.rejected,  .badge.cancelled                   { background: rgba(255,59,92,.16); color: #ff7488; border-color: rgba(255,59,92,.32); }
.badge.postponed                                     { background: rgba(107,123,255,.18); color: #98a4ff; border-color: rgba(107,123,255,.34); }
.badge.inactive                                      { background: rgba(139,151,187,.16); color: var(--muted); border-color: var(--line); }
:root[data-theme="light"] .badge.pending,
:root[data-theme="light"] .badge.scheduled,
:root[data-theme="light"] .badge.assigned  { color: #9a6300; }
:root[data-theme="light"] .badge.active,
:root[data-theme="light"] .badge.approved,
:root[data-theme="light"] .badge.completed,
:root[data-theme="light"] .badge.report_submitted { color: #0c7a52; }
:root[data-theme="light"] .badge.rejected,
:root[data-theme="light"] .badge.cancelled { color: #c01533; }
:root[data-theme="light"] .badge.postponed { color: #3a47cc; }

/* ---------------- Forms ---------------- */
.form-row { margin-bottom: 17px; }
.form-grid { display: grid; gap: 17px; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
label.lbl { display: block; font-weight: 600; margin-bottom: 7px; font-size: 13px; color: var(--text-soft); }
.input, select.input, textarea.input {
  width: 100%; padding: 11px 13px; border: 1px solid var(--glass-border);
  border-radius: 12px; font-size: 14px; font-family: inherit;
  background: var(--input-bg); color: var(--text);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: .18s;
}
.input::placeholder { color: var(--muted); }
.input:focus {
  outline: none; border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(107, 123, 255, .22);
}
textarea.input { min-height: 92px; resize: vertical; }
/* Native dropdown popup matches the theme (Windows/Chromium renders these). */
.input option, .input optgroup {
  background-color: var(--opt-bg); color: var(--text);
}
.hint { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* Role-conditional fields in the user form (CSS-only, modal-safe via :has). */
.rf { display: none; }
form:has(.role-select option[value="student"]:checked) .rf-student,
form:has(.role-select option[value="student"]:checked) .rf-id,
form:has(.role-select option[value="facilitator"]:checked) .rf-facilitator,
form:has(.role-select option[value="facilitator"]:checked) .rf-id,
form:has(.role-select option[value="supervisor"]:checked) .rf-supervisor { display: block; }

/* Role badges */
.badge.role-admin       { background: rgba(255,59,92,.16);  color:#ff7488; border-color: rgba(255,59,92,.32); }
.badge.role-student     { background: rgba(107,123,255,.18); color:#98a4ff; border-color: rgba(107,123,255,.34); }
.badge.role-supervisor  { background: rgba(40,209,139,.16); color:#45e3a3; border-color: rgba(40,209,139,.32); }
.badge.role-facilitator { background: rgba(255,182,72,.16); color:#ffc066; border-color: rgba(255,182,72,.32); }
:root[data-theme="light"] .badge.role-admin       { color:#c01533; }
:root[data-theme="light"] .badge.role-student     { color:#3a47cc; }
:root[data-theme="light"] .badge.role-supervisor  { color:#0c7a52; }
:root[data-theme="light"] .badge.role-facilitator { color:#9a6300; }
.err { color: var(--accent); font-size: 12.5px; margin-top: 6px; }

/* ---------------- Alerts ---------------- */
.alert { padding: 13px 17px; border-radius: 13px; margin-bottom: 20px; font-size: 13.5px; font-weight: 500;
  border: 1px solid var(--glass-border); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.alert.success { background: rgba(40,209,139,.14); color: #45e3a3; border-color: rgba(40,209,139,.3); }
.alert.error   { background: rgba(255,59,92,.14); color: #ff7488; border-color: rgba(255,59,92,.3); }
:root[data-theme="light"] .alert.success { color: #0c7a52; }
:root[data-theme="light"] .alert.error   { color: #c01533; }

/* ---------------- Misc ---------------- */
.muted { color: var(--muted); }
.flex { display: flex; align-items: center; gap: 10px; }
.between { justify-content: space-between; }
.mt0 { margin-top: 0; } .mb0 { margin-bottom: 0; }
.empty { text-align: center; padding: 46px 20px; color: var(--muted); }
.empty .big { font-size: 34px; margin-bottom: 10px; }
.section-title { font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); font-weight: 700; margin: 22px 0 12px; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 13px;
  box-shadow: var(--shadow-sm);
}
.edit-block summary { list-style: none; cursor: pointer; user-select: none; }
.edit-block summary::-webkit-details-marker { display: none; }
.edit-block summary::marker { content: ""; }
.edit-block[open] summary { margin-bottom: 4px; }
.dl { display: grid; grid-template-columns: 170px 1fr; gap: 11px 16px; font-size: 14px; }
.dl dt { color: var(--muted); font-weight: 600; }
.dl dd { margin: 0; color: var(--text); }

/* ---------------- Login ---------------- */
.login-wrap { min-height: 100vh; display: grid; grid-template-columns: 1.05fr 1fr; }
.login-art {
  position: relative; overflow: hidden;
  color: #fff; padding: 64px; display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(600px 400px at 20% 20%, rgba(107,123,255,.5), transparent 60%),
    radial-gradient(600px 500px at 90% 80%, rgba(255,59,92,.45), transparent 55%),
    linear-gradient(150deg, #11183a 0%, #0b1026 60%, #070a18 100%);
}
.login-art .logo {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #ff7a8c);
  display: grid; place-items: center; font-weight: 800; font-size: 26px; margin-bottom: 28px;
  box-shadow: 0 10px 30px var(--accent-glow);
}
.login-art h2 { font-size: 32px; margin: 0 0 14px; line-height: 1.18; }
.login-art p { color: #c2cbe8; max-width: 390px; }
.login-art .flow { margin-top: 32px; display: flex; flex-direction: column; gap: 13px; }
.login-art .flow div { display: flex; align-items: center; gap: 13px; color: #d3dbf3; font-size: 14px; }
.login-art .flow .n {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff;
}
.login-form { display: flex; align-items: center; justify-content: center; padding: 44px; }
.login-form .box {
  width: 100%; max-width: 400px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(150%);
}
.login-form h1 { color: var(--text); margin: 0 0 6px; }
.login-form .demo { margin-top: 26px; border-top: 1px solid var(--line); padding-top: 18px; }
.login-form .demo h4 { margin: 0 0 10px; font-size: 12px; text-transform: uppercase;
  letter-spacing: .05em; color: var(--muted); }
.login-form .demo .acc { display: flex; justify-content: space-between; font-size: 12.5px;
  padding: 5px 0; color: var(--text-soft); }
.login-form .demo .acc code {
  background: var(--input-bg); padding: 2px 7px; border-radius: 6px; color: var(--text);
  border: 1px solid var(--glass-border);
}

/* ---------------- Modal ---------------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center;
  padding: 24px; overflow: hidden;
  background: rgba(4, 7, 14, .55);
  backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
}
.modal-overlay.open { display: flex; }
/* Flex column so the header stays fixed and only the body scrolls
   (prevents content bleeding behind a sticky header). */
.modal-card {
  position: relative; width: 100%; max-width: 880px;
  display: flex; flex-direction: column;
  max-height: calc(100vh - 48px);
  background: var(--modal-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%);
  overflow: hidden;                         /* clip to rounded corners */
  animation: modalIn .22s cubic-bezier(.2, .9, .3, 1);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }
.modal-head {
  flex: none;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 22px; border-bottom: 1px solid var(--line);
}
.modal-head h3 { margin: 0; font-size: 16px; color: var(--text); font-weight: 700; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.modal-close {
  flex: none; width: 34px; height: 34px; border-radius: 10px; cursor: pointer;
  background: var(--glass); border: 1px solid var(--glass-border); color: var(--text);
  font-size: 16px; display: grid; place-items: center; transition: .15s;
}
.modal-close:hover { background: var(--glass-2); color: var(--accent); }
.modal-body { flex: 1 1 auto; min-height: 0; padding: 24px; overflow-y: auto; overflow-x: hidden; }
.modal-body > *:first-child { margin-top: 0; }
.modal-body > *:last-child { margin-bottom: 0; }
/* Flatten nested cards but keep them from clipping their own right-aligned content. */
.modal-body .card {
  background: transparent; border: none; box-shadow: none; backdrop-filter: none;
  border-radius: 0; overflow: visible; margin: 0 0 20px;
}
.modal-body .card:last-child { margin-bottom: 0; }
.modal-body .card .card-head { padding: 0 0 12px; }
.modal-body .card .card-body { padding: 14px 0 0; }
.modal-body .card .card-body.tight { padding: 12px 0 0; }
.modal-body .form-grid { grid-template-columns: 1fr 1fr; }
.modal-body .form-grid > *, .modal-body .flex > * { min-width: 0; }
.modal-body .table-wrap { overflow-x: auto; }
.modal-loading { text-align: center; padding: 40px; color: var(--muted); }

@media (max-width: 640px) { .modal-body .form-grid { grid-template-columns: 1fr; } }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--glass-border-2); }

@media (max-width: 860px) {
  .sidebar { display: none; }
  .main { margin-left: 0; }
  .login-wrap { grid-template-columns: 1fr; }
  .login-art { display: none; }
  .form-grid { grid-template-columns: 1fr; }
}
