:root {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: #14233a;
  background: #f4f7fb;
  font-synthesis: none;
  --navy: #0b182a;
  --navy-2: #132a47;
  --blue: #2764e7;
  --blue-dark: #1c4fbe;
  --gold: #d3aa4e;
  --ink: #14233a;
  --muted: #69768a;
  --line: #dfe5ee;
  --surface: #fff;
  --soft: #f4f7fb;
  --success: #16835b;
}

* { box-sizing: border-box; }
html { min-width: 320px; }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; background: var(--soft); }
main { flex: 1; }
a { color: var(--blue); }
button, input, select { font: inherit; }
button, a, summary { touch-action: manipulation; }
button, summary { cursor: pointer; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid #f0bd4f; outline-offset: 3px; }

.topbar { min-height: 72px; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 10px clamp(20px, 5vw, 72px); border-bottom: 1px solid var(--line); background: #fff; position: relative; z-index: 30; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brandmark { width: 44px; height: 44px; object-fit: contain; }
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 16px; letter-spacing: -.1px; }
.brand-copy small { color: var(--muted); font-size: 12px; }
.topbar-actions { display: flex; align-items: center; gap: 14px; }
.topbar-actions form { margin: 0; }
.signed-in-as { max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; color: #4c5b70; }
.secure-label { font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.secure-label span { color: var(--success); font-size: 11px; }
.quiet-button, .text-button { padding: 0; border: 0; background: transparent; color: var(--blue); font-weight: 650; font-size: 14px; }
.quiet-button:hover, .text-button:hover { color: var(--blue-dark); text-decoration: underline; }

footer { display: flex; justify-content: space-between; gap: 20px; padding: 20px clamp(20px, 5vw, 72px); border-top: 1px solid var(--line); background: #fff; color: var(--muted); font-size: 12px; }

.eyebrow { color: var(--blue); font-size: 12px; font-weight: 750; letter-spacing: 1.6px; margin-bottom: 16px; }
.eyebrow--light { color: #93b5ff; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(34px, 4vw, 50px); line-height: 1.08; letter-spacing: -1.7px; margin-bottom: 16px; }
h2 { font-size: 24px; line-height: 1.25; letter-spacing: -.55px; margin-bottom: 10px; }
h3 { font-size: 18px; margin-bottom: 6px; }
p { color: var(--muted); font-size: 16px; line-height: 1.6; }
.lede { max-width: 650px; font-size: 18px; }

.login-layout { min-height: calc(100vh - 125px); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .75fr); align-items: center; gap: clamp(40px, 8vw, 130px); padding: clamp(48px, 7vw, 92px) clamp(24px, 8vw, 130px); background: radial-gradient(circle at 27% 26%, #173963 0, var(--navy) 40%, #071220 100%); position: relative; overflow: hidden; }
.login-layout::before { content: ""; position: absolute; width: 650px; height: 650px; border: 1px solid rgba(140,174,229,.09); border-radius: 50%; left: -260px; bottom: -390px; box-shadow: 0 0 0 100px rgba(140,174,229,.025), 0 0 0 205px rgba(140,174,229,.018); }
.login-intro { max-width: 660px; color: #fff; position: relative; z-index: 1; }
.login-intro h1 { font-size: clamp(42px, 5vw, 68px); letter-spacing: -2.8px; font-weight: 650; }
.login-intro h1 span { color: #adc6f7; font-weight: 430; }
.login-intro > p { max-width: 570px; color: #aab9cd; font-size: 18px; }
.login-app-preview { display: grid; grid-template-columns: repeat(3, minmax(130px, 1fr)); gap: 12px; margin: 38px 0 24px; }
.preview-app { min-width: 0; display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid rgba(191,211,244,.14); border-radius: 13px; background: rgba(255,255,255,.055); backdrop-filter: blur(8px); }
.preview-app > span { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border-radius: 9px; background: #2f70f4; color: #fff; font-weight: 800; }
.preview-app--service > span { background: #7858d6; }
.preview-app--time > span { background: #d09a31; }
.preview-app strong, .preview-app small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.preview-app strong { font-size: 13px; margin-bottom: 3px; }
.preview-app small { color: #91a4bf; font-size: 11px; }
.trust-note { color: #9aadc6; font-size: 13px; display: flex; align-items: center; gap: 9px; }
.trust-note span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(64,193,141,.13); color: #5fd1a2; }
.login-panel { width: 100%; max-width: 510px; justify-self: end; padding: 8px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.075); box-shadow: 0 32px 80px rgba(0,0,0,.25); position: relative; z-index: 2; }
.login-panel-inner { padding: clamp(30px, 4vw, 48px); border-radius: 15px; background: #fff; }
.login-panel h2 { font-size: 31px; }
.login-panel-inner > p { margin-bottom: 28px; }
.local-form { display: grid; gap: 18px; }
.field { min-width: 0; }
.field label { display: block; margin-bottom: 8px; color: #283850; font-size: 14px; font-weight: 700; }
.field label small { color: var(--muted); font-weight: 500; }
.field input:not([type=checkbox]), .field select, .local-form input:not([type=checkbox]), .catalog-editor input:not([type=checkbox]), .catalog-editor select { width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid #c6cfdb; border-radius: 8px; background: #fff; color: var(--ink); }
.field input:hover, .field select:hover { border-color: #9caabc; }
.field input:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(39,100,231,.1); outline: 0; }
.field > small, .field .helptext { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.errorlist { margin: 7px 0 0; padding-left: 18px; color: #a02d3a; font-size: 13px; }
.primary-button { min-height: 44px; display: inline-flex; justify-content: space-between; align-items: center; gap: 24px; padding: 11px 17px; border: 1px solid var(--blue); border-radius: 8px; background: var(--blue); color: #fff; text-decoration: none; font-size: 14px; font-weight: 750; }
.primary-button:hover { border-color: var(--blue-dark); background: var(--blue-dark); }
.primary-button--full { width: 100%; margin-top: 4px; }
.microsoft-button { width: 100%; min-height: 52px; padding: 12px 15px; display: flex; align-items: center; gap: 13px; border: 1px solid #bdc7d4; border-radius: 8px; background: #fff; color: var(--ink); font-weight: 700; }
.microsoft-button:hover { background: #f5f8fc; border-color: #96a5b7; }
.arrow { margin-left: auto; }
.ms-icon { display: grid; grid-template-columns: 9px 9px; gap: 2px; }
.ms-icon i { height: 9px; background: #f25022; }.ms-icon i:nth-child(2){background:#7fba00}.ms-icon i:nth-child(3){background:#00a4ef}.ms-icon i:nth-child(4){background:#ffb900}
.login-help { display: flex; gap: 12px; padding-top: 24px; margin-top: 28px; border-top: 1px solid var(--line); }
.login-help strong { display: block; font-size: 14px; margin-top: 1px; }
.login-help p { margin: 3px 0 0; font-size: 13px; line-height: 1.45; }
.shield-icon { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 28px; border-radius: 8px; background: #e9f6f1; color: var(--success); font-weight: 800; }
.help { margin: 22px 0 0 !important; font-size: 12px !important; }

.workspace { max-width: 1220px; margin: 0 auto; padding: clamp(44px, 6vw, 76px) clamp(20px, 5vw, 60px); }
.page-heading, .admin-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.page-heading > div:first-child { max-width: 720px; }
.page-heading p { margin-bottom: 0; }
.secondary-button { display: inline-flex; align-items: center; min-height: 42px; padding: 9px 15px; border: 1px solid #c9d2df; border-radius: 8px; background: #fff; color: #34435a; font-size: 14px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.secondary-button:hover { border-color: #9cabbf; background: #f8fafe; }
.back-link { display: inline-block; margin-bottom: 30px; text-decoration: none; font-size: 14px; font-weight: 650; }
.app-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; margin-top: 36px; }
.application-card { min-height: 285px; display: flex; flex-direction: column; justify-content: space-between; padding: 25px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); text-decoration: none; box-shadow: 0 6px 18px rgba(19,42,71,.045); transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.application-card:hover { transform: translateY(-3px); border-color: #b5c5dc; box-shadow: 0 15px 35px rgba(19,42,71,.1); }
.application-card-top, .application-card-action { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.application-card h2 { margin-top: 30px; }
.application-card p { font-size: 14px; }
.application-card-action { padding-top: 18px; border-top: 1px solid var(--line); color: var(--blue); font-size: 14px; font-weight: 750; }
.app-icon { width: 48px; height: 48px; display: inline-grid; place-items: center; flex: 0 0 48px; border-radius: 12px; background: #eaf1ff; color: var(--blue); }
.app-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.app-icon--service { background: #f0ebff; color: #7251cc; }.app-icon--time { background: #fff4dd; color: #ae7610; }.app-icon--app { background: #eaf5f2; color: #16765a; }
.availability-dot { display: inline-flex; align-items: center; gap: 7px; color: var(--success); font-size: 12px; font-weight: 700; }
.availability-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #27aa79; box-shadow: 0 0 0 4px #e7f7f1; }
.destination-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 36px; }
.destination-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.destination-avatar { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 11px; background: #eef3fa; color: #405a7a; font-size: 14px; font-weight: 800; }
.card-kicker, .mini-label { display: block; margin-bottom: 5px; color: #8290a3; font-size: 10px; font-weight: 800; letter-spacing: 1.2px; }
.card-copy h2 { margin: 0; font-size: 19px; }.card-copy p { margin: 2px 0 0; font-size: 13px; }
.card-launch { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 9px; background: var(--blue); color: #fff; text-decoration: none; font-size: 20px; }
.default-form { grid-column: 2 / 4; }
.empty-card { grid-column: 1/-1; max-width: 720px; padding: 30px; border: 1px dashed #c4cfde; border-radius: 12px; background: #fff; }
.empty-card .availability-dot { margin-bottom: 20px; }
.message-card { max-width: 650px; margin: 70px auto; padding: 40px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.message-card .primary-button { margin-top: 20px; }
.notice { margin: 24px 0; padding: 14px 16px; border: 1px solid #bddacb; border-radius: 9px; background: #edf8f3; color: #235f49; font-size: 14px; line-height: 1.5; }
.notice--error { border-color: #efc3c8; background: #fff1f2; color: #8f2936; }

.app-switcher { position: relative; }
.app-switcher > summary { width: 40px; height: 40px; display: grid; place-items: center; list-style: none; border: 1px solid #d4dce7; border-radius: 9px; color: #40516a; background: #fff; }
.app-switcher > summary::-webkit-details-marker { display: none; }
.app-switcher > summary:hover, .app-switcher[open] > summary { background: #f1f5fb; color: var(--blue); }
.app-switcher > summary svg { width: 20px; height: 20px; fill: currentColor; }
.app-switcher-menu { width: 330px; position: absolute; right: 0; top: 49px; padding: 9px; border: 1px solid #d8e0eb; border-radius: 12px; background: #fff; box-shadow: 0 20px 60px rgba(11,24,42,.18); z-index: 100; }
.switcher-heading { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 12px 12px; }
.switcher-heading strong { font-size: 14px; }.switcher-heading span { color: var(--muted); font-size: 11px; }
.app-switcher-menu > a:not(.view-all-apps) { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 10px; border-radius: 9px; color: var(--ink); text-decoration: none; }
.app-switcher-menu > a:hover, .app-switcher-menu > a.is-current { background: #f2f6fc; }
.app-switcher-menu .app-icon { width: 38px; height: 38px; flex-basis: 38px; border-radius: 9px; }.app-switcher-menu .app-icon svg { width: 20px; height: 20px; }
.app-switcher-menu a strong, .app-switcher-menu a small { display: block; }.app-switcher-menu a strong { font-size: 13px; }.app-switcher-menu a small { margin-top: 2px; color: var(--muted); font-size: 11px; }
.switch-arrow { color: #74839a; }
.view-all-apps { display: block; margin-top: 7px; padding: 11px 12px; border-top: 1px solid var(--line); color: var(--blue); text-decoration: none; font-size: 13px; font-weight: 700; }

.admin-workspace { max-width: 1440px; margin: 0 auto; padding: 42px clamp(18px,4vw,55px) 70px; }
.admin-heading { align-items: flex-end; margin-bottom: 28px; }
.admin-heading h1 { font-size: 38px; margin-bottom: 8px; }.admin-heading p { max-width: 720px; margin-bottom: 0; font-size: 15px; }
.admin-tabs { display: flex; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.admin-tabs a { padding: 9px 13px; border-radius: 7px; color: #5c6b7f; text-decoration: none; font-size: 13px; font-weight: 700; white-space: nowrap; }
.admin-tabs a:hover, .admin-tabs a.is-active { background: #edf3fd; color: var(--blue); }
.admin-layout { display: grid; grid-template-columns: 300px minmax(0,1fr); min-height: 690px; border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; box-shadow: 0 10px 35px rgba(19,42,71,.055); }
.people-panel { min-width: 0; border-right: 1px solid var(--line); background: #f9fbfd; }
.panel-title { min-height: 73px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 15px 18px; border-bottom: 1px solid var(--line); }
.panel-title span, .editor-heading span { display: block; margin-bottom: 3px; color: #8290a3; font-size: 10px; font-weight: 800; letter-spacing: 1.2px; }.panel-title strong { font-size: 14px; }
.icon-button { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #cbd5e2; border-radius: 8px; background: #fff; color: var(--blue); text-decoration: none; font-size: 22px; }
.search-box { margin: 14px; min-height: 40px; display: flex; align-items: center; gap: 8px; padding: 0 11px; border: 1px solid #d4dce7; border-radius: 8px; background: #fff; color: #8592a4; }
.search-box input { width: 100%; min-width: 0; border: 0; outline: 0; font-size: 13px; }
.people-list { padding: 0 8px 15px; }
.people-list > a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 10px; border-radius: 9px; color: var(--ink); text-decoration: none; }
.people-list > a:hover, .people-list > a.is-selected { background: #eaf1fb; }
.person-avatar { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #dfe8f5; color: #405671; font-size: 11px; font-weight: 800; }
.person-copy { min-width: 0; }.person-copy strong, .person-copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.person-copy strong { font-size: 13px; }.person-copy small { margin-top: 2px; color: var(--muted); font-size: 11px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #26aa78; }.status-dot.is-disabled { background: #aeb7c4; }
.access-editor { min-width: 0; }
.editor-heading { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 26px; border-bottom: 1px solid var(--line); }
.editor-heading h2 { margin: 0; font-size: 22px; }
.form-section { margin: 0; padding: 27px; border: 0; border-bottom: 1px solid var(--line); }
.section-heading { display: flex; gap: 13px; margin-bottom: 22px; }.section-heading > span, .section-number { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 28px; border-radius: 50%; background: #eaf1ff; color: var(--blue); font-size: 12px; font-weight: 800; }
.section-heading h3 { margin: 1px 0 3px; }.section-heading p { margin: 0; font-size: 13px; }
.field-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }.field--wide { grid-column: 1/-1; }
.toggle-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 20px; }
.toggle-row > label { display: flex; align-items: flex-start; gap: 11px; padding: 13px; border: 1px solid var(--line); border-radius: 9px; cursor: pointer; }.toggle-row input { margin-top: 3px; accent-color: var(--blue); }.toggle-row strong, .toggle-row small { display: block; }.toggle-row strong { font-size: 13px; }.toggle-row small { margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.4; }
.access-matrix { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.access-app { border: 1px solid var(--line); border-radius: 11px; overflow: hidden; background: #fff; }
.app-access-toggle { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 12px; padding: 15px; cursor: pointer; }.app-access-toggle > input { width: 17px; height: 17px; accent-color: var(--blue); }.app-access-toggle .app-icon { width: 38px; height: 38px; flex-basis: 38px; border-radius: 9px; }.app-access-toggle .app-icon svg { width: 20px; height: 20px; }.app-access-toggle strong, .app-access-toggle small { display: block; }.app-access-toggle strong { font-size: 14px; }.app-access-toggle small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.customer-checks { display: grid; gap: 3px; padding: 12px 15px 15px 44px; border-top: 1px solid var(--line); background: #fafbfd; }
.customer-checks label { display: flex; align-items: center; gap: 9px; min-height: 32px; color: #3e4d62; font-size: 13px; cursor: pointer; }.customer-checks input { accent-color: var(--blue); }.customer-checks label small { margin-left: auto; color: #a36819; font-size: 10px; }.customer-checks p, .unscoped-note { margin: 0; color: var(--muted); font-size: 12px; }
.unscoped-note { padding: 13px 15px 15px 44px; border-top: 1px solid var(--line); background: #fafbfd; }
.password-section summary { display: flex; align-items: center; gap: 13px; list-style: none; }.password-section summary::-webkit-details-marker { display: none; }.password-section summary > span:nth-child(2) { flex: 1; }.password-section summary strong, .password-section summary small { display: block; }.password-section summary small { margin-top: 3px; color: var(--muted); font-size: 12px; }.summary-arrow { font-size: 18px; }.password-fields { margin: 22px 0 0 41px; }
.editor-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 26px; background: #fafbfd; }.editor-footer > span { color: var(--muted); font-size: 12px; }

.catalog-layout { display: grid; grid-template-columns: 360px minmax(0,1fr); gap: 20px; align-items: start; }
.catalog-list-panel, .catalog-editor { border: 1px solid var(--line); border-radius: 13px; background: #fff; overflow: hidden; box-shadow: 0 8px 25px rgba(19,42,71,.04); }
.catalog-app { border-bottom: 1px solid var(--line); }.catalog-app:last-child { border-bottom: 0; }.catalog-app > a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 14px 17px; color: var(--ink); text-decoration: none; }.catalog-app > a:hover { background: #f5f8fc; }.catalog-app .app-icon { width: 38px; height: 38px; flex-basis: 38px; border-radius: 9px; }.catalog-app .app-icon svg { width: 20px; height: 20px; }.catalog-app strong, .catalog-app small { display: block; }.catalog-app strong { font-size: 14px; }.catalog-app small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.catalog-customers { padding: 2px 17px 12px 67px; }.catalog-customers a { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; color: #4f5f74; text-decoration: none; font-size: 12px; }.catalog-customers a:hover span { color: var(--blue); }.catalog-customers small, .catalog-customers p { color: #8995a5; font-size: 10px; }.catalog-customers p { margin: 6px 0; }
.catalog-editors { display: grid; gap: 20px; }.catalog-editor { padding: 0; }.catalog-editor .editor-heading { padding: 15px 21px; }.catalog-editor .field-grid, .catalog-editor .toggle-row { padding: 22px; margin: 0; }.catalog-editor .toggle-row { padding-top: 0; }
.muted-copy { padding: 15px; color: var(--muted); font-size: 13px; }

@media (max-width: 1050px) {
  .login-layout { grid-template-columns: 1fr 420px; gap: 45px; padding-left: 50px; padding-right: 50px; }
  .login-app-preview { grid-template-columns: 1fr; max-width: 330px; }.preview-app--time { display: none; }
  .app-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .admin-heading { display: block; }.admin-tabs { width: max-content; margin-top: 20px; }
  .access-matrix { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .signed-in-as { display: none; }
  .login-layout { grid-template-columns: 1fr; padding: 44px 20px; }.login-intro { text-align: center; margin: 0 auto; }.login-intro h1 { font-size: 46px; }.login-intro > p { margin-left: auto; margin-right: auto; }.login-app-preview { grid-template-columns: repeat(2,minmax(0,1fr)); max-width: 560px; }.preview-app--time { display: flex; grid-column: 1/-1; max-width: 275px; justify-self: center; width: 100%; }.trust-note { justify-content: center; }.login-panel { justify-self: center; }
  .destination-grid, .field-grid, .toggle-row { grid-template-columns: 1fr; }.field--wide { grid-column: auto; }
  .admin-layout, .catalog-layout { grid-template-columns: 1fr; }.people-panel { border-right: 0; border-bottom: 1px solid var(--line); }.people-list { max-height: 280px; overflow: auto; }
}

@media (max-width: 600px) {
  .topbar { min-height: 64px; padding: 8px 16px; }.brandmark { width: 38px; height: 38px; }.brand-copy small { display: none; }.secure-label { display: none; }.topbar-actions { gap: 9px; }.quiet-button { font-size: 13px; }
  footer { flex-direction: column; gap: 4px; padding: 17px 20px; }
  .login-layout { min-height: auto; padding: 38px 16px; }.login-intro { text-align: left; }.login-intro h1 { font-size: 39px; letter-spacing: -1.8px; }.login-intro > p { font-size: 16px; }.login-app-preview { grid-template-columns: 1fr; margin-top: 27px; }.preview-app--time { grid-column: auto; max-width: none; }.trust-note { justify-content: flex-start; }.login-panel-inner { padding: 27px 22px; }.login-panel h2 { font-size: 27px; }
  .workspace, .admin-workspace { padding: 36px 16px 52px; }.page-heading { display: block; }.page-heading .secondary-button { margin-top: 20px; }.workspace h1 { font-size: 36px; }
  .app-grid { grid-template-columns: 1fr; }.application-card { min-height: 250px; }.destination-card { grid-template-columns: auto 1fr auto; }.default-form { grid-column: 1/-1; }
  .app-switcher-menu { position: fixed; width: calc(100vw - 24px); right: 12px; top: 67px; }
  .admin-heading h1 { font-size: 33px; }.admin-tabs { width: 100%; overflow-x: auto; }.admin-tabs a { flex: 0 0 auto; }.editor-heading { padding: 14px 17px; }.editor-heading h2 { font-size: 19px; }.form-section { padding: 22px 17px; }.password-fields { margin-left: 0; }.editor-footer { padding: 15px 17px; }.editor-footer > span { display: none; }.access-matrix { grid-template-columns: 1fr; }.catalog-list-panel { order: 2; }
}
