/* =============================================
   OneLynk — Premium SaaS Login
   Two-panel layout · Luxury dark · DM Sans + Instrument Serif
   ============================================= */

:root {
  --bg: #f8f8fb;
  --bg-alt: #f2f2f8;
  --surface: #ffffff;
  --surface-2: #f7f8fc;
  --border: rgba(0, 0, 0, 0.08);
  --border-h: rgba(0, 0, 0, 0.12);
  --text: #0d0d12;
  --text-2: #6b6b80;
  --text-3: #9999b0;
  --accent: #1a56f0;
  --accent-deep: #0f3dcc;
  --accent-glow: rgba(26, 86, 240, 0.18);
  --accent-soft: rgba(26, 86, 240, 0.08);
  --green: #0f9f6e;
  --red: #d94848;
  --radius-card: 20px;
  --radius-input: 14px;
  --radius-btn: 100px;
  --font-body: "DM Sans", sans-serif;
  --font-display: "Outfit", "DM Sans", sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-blue: 0 8px 32px rgba(26, 86, 240, 0.28);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background:
    radial-gradient(circle at 84% 8%, rgba(26, 86, 240, 0.11), transparent 30%),
    radial-gradient(
      circle at 8% 86%,
      rgba(139, 92, 246, 0.08),
      transparent 34%
    ),
    var(--bg);
  font-family: var(--font-body);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  overflow-x: hidden;
}

/* ============================================
   Background atmosphere
   ============================================ */
.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(86px);
  opacity: 0.48;
}
.bg-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(26, 86, 240, 0.16) 0%,
    transparent 70%
  );
  top: -120px;
  right: -100px;
  left: auto;
  animation: drift 18s ease-in-out infinite alternate;
}
.bg-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 70%
  );
  bottom: -90px;
  left: -90px;
  right: auto;
  animation: drift 22s ease-in-out infinite alternate-reverse;
}
.bg-orb-3 {
  display: none;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(26, 86, 240, 0.08) 0%,
    transparent 70%
  );
  top: 44%;
  left: 42%;
  opacity: 0.18;
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(30px, 20px) scale(1.06);
  }
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 86, 240, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 86, 240, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 30%,
    transparent 100%
  );
}
.bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.18;
}

/* ============================================
   Left panel — brand
   ============================================ */
.panel-left {
  position: relative;
  z-index: 1;
  display: none; /* hidden on mobile */
  flex: 0 0 420px;
  flex-direction: column;
  padding: 48px 52px;
  border-right: 1px solid var(--border);
}
.panel-left-inner {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wordmark {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: var(--font-display);
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    #6366f1 60%,
    #8b5cf6 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  margin-bottom: 48px;
}
.panel-tagline {
  margin-bottom: 40px;
  line-height: 1.2;
}
.tagline-serif {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 38px;
  color: var(--text);
  display: block;
}
.tagline-light {
  font-size: 28px;
  font-weight: 300;
  color: var(--text-2);
  display: block;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
  font-weight: 400;
}
.feat-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-icon svg {
  width: 100%;
  height: 100%;
}

.testimonial {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}
.testimonial p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 14px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #2c6af5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--text-3);
}

/* ============================================
   Right panel — auth
   ============================================ */
.panel-right {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  min-height: 100vh;
  min-height: 100dvh;
}

/* ============================================
   Auth card
   ============================================ */
.card {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 34px 32px 28px;
  box-shadow:
    0 18px 48px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.card-header {
  margin-bottom: 22px;
}
.wordmark-mobile {
  display: block;
  margin-bottom: 18px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 6px;
}
.card-sub {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
}

.session-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(26, 86, 240, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(
      circle at top right,
      rgba(26, 86, 240, 0.1),
      transparent 42%
    ),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    var(--shadow-sm);
}
.session-card__glow {
  position: absolute;
  inset: auto -48px -56px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 240, 0.12), transparent 68%);
  pointer-events: none;
}
.session-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.session-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}
.session-card__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.session-card__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.session-card__copy {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.65;
  max-width: 36ch;
}
.session-card__identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.session-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #6366f1);
  box-shadow: 0 10px 30px rgba(26, 86, 240, 0.24);
  flex-shrink: 0;
}
.session-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.session-meta strong {
  font-size: 14px;
  color: var(--text);
}
.session-meta span {
  font-size: 12.5px;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.session-card__chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.session-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.session-chip--soft {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: rgba(26, 86, 240, 0.14);
}
.session-card__content {
  margin-top: 16px;
  padding: 16px 0 2px;
  position: relative;
  z-index: 1;
}
.session-card__actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
  align-items: center;
}
.session-card__actions .btn-primary,
.session-card__actions .btn-outline {
  margin-top: 0;
  min-height: 40px;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 14px;
  gap: 6px;
}
.session-card__actions .btn-outline {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text-2);
  flex: 0 0 auto;
  min-width: 160px;
}
.session-card__actions .btn-outline:hover {
  background: var(--surface-2);
  color: var(--accent);
}
.session-card__actions .btn-primary {
  flex: 1 1 auto;
  box-shadow: var(--shadow-blue);
}
.session-card__actions .btn-primary:hover {
  box-shadow: 0 12px 36px rgba(26, 86, 240, 0.34);
}
.session-card__actions .btn-arrow {
  font-size: 14px;
}

/* ============================================
   Tabs
   ============================================ */
.tabs {
  position: relative;
  display: flex;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 4px;
  margin-bottom: 22px;
  gap: 0;
}
.tab {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 9px 0;
  border: none;
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius-btn);
  transition: color 0.25s;
  letter-spacing: 0.01em;
}
.tab.active {
  color: var(--text);
}
.tab-indicator {
  position: absolute;
  z-index: 1;
  top: 4px;
  bottom: 4px;
  left: 4px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-btn);
  transition:
    left 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

/* ============================================
   Form
   ============================================ */
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 7px;
}
.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.label-row label {
  margin-bottom: 0;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-2);
}
.forgot-link {
  font-size: 12px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.forgot-link:hover {
  color: var(--accent);
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: color 0.2s;
  flex-shrink: 0;
}
.input-icon svg {
  width: 100%;
  height: 100%;
}

.input-wrap input {
  width: 100%;
  padding: 12px 52px 12px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  color: var(--text);
  font-family: var(--font-body);
  font-size: max(16px, 14.5px);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.input-wrap input:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.input-wrap input:focus + .input-icon,
.input-wrap:focus-within .input-icon {
  color: var(--accent);
}
.input-wrap input::placeholder {
  color: var(--text-3);
}
.input-wrap input:-webkit-autofill,
.input-wrap input:-webkit-autofill:hover,
.input-wrap input:-webkit-autofill:focus,
.input-wrap input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  box-shadow:
    0 0 0 1000px #fff inset,
    0 0 0 1px rgba(26, 86, 240, 0.12);
  -webkit-box-shadow:
    0 0 0 1000px #fff inset,
    0 0 0 1px rgba(26, 86, 240, 0.12);
  border: 1px solid rgba(26, 86, 240, 0.16);
  transition: background-color 9999s ease-in-out 0s;
}
.input-wrap input:-webkit-autofill ~ .eye-btn,
.input-wrap input:-webkit-autofill:hover ~ .eye-btn,
.input-wrap input:-webkit-autofill:focus ~ .eye-btn,
.input-wrap input:-webkit-autofill:active ~ .eye-btn {
  color: var(--text-2);
}

/* password eye */
.eye-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-2);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  border-radius: 8px;
  z-index: 2;
}
.eye-btn:hover {
  color: var(--text);
}
.input-wrap:focus-within .eye-btn {
  color: var(--text);
}
.eye-btn svg {
  width: 17px;
  height: 17px;
  display: block;
  pointer-events: none;
}

/* field hints */
.field-hint {
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 6px;
  padding-left: 4px;
  transition: color 0.2s;
  min-height: 16px;
}
.field-hint.is-hidden {
  opacity: 0;
  min-height: 0;
  margin-top: 0;
}
.field-hint.valid {
  color: var(--green);
}
.field-hint.invalid {
  color: var(--red);
}
.url-preview {
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 4px;
  padding-left: 4px;
  font-family: "Courier New", monospace;
  word-break: break-all;
  transition:
    color 0.2s,
    opacity 0.2s;
}
.url-preview.is-empty {
  opacity: 0.58;
}
.url-preview.is-active {
  color: var(--text-2);
  opacity: 1;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
  width: 100%;
  margin-top: 8px;
  padding: 13px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform 0.18s,
    opacity 0.18s,
    box-shadow 0.18s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-deep);
  box-shadow: var(--shadow-blue);
  opacity: 1;
}
.btn-primary:active {
  transform: translateY(0);
  opacity: 1;
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s;
}
.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-outline {
  flex: 1;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-google {
  width: 100%;
  margin-top: 10px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition:
    background 0.2s,
    border-color 0.2s;
  touch-action: manipulation;
}
.btn-google:hover {
  background: var(--surface-2);
  border-color: var(--border-h);
}

/* ============================================
   Divider
   ============================================ */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  color: var(--text-3);
  font-size: 12px;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ============================================
   Switch link
   ============================================ */
.switch-link {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-3);
}
.switch-link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.switch-link a:hover {
  color: var(--accent-deep);
}

/* ============================================
   Message
   ============================================ */
.msg {
  margin-top: 16px;
  padding: 11px 15px;
  border-radius: 12px;
  font-size: 13px;
  display: none;
  text-align: center;
  line-height: 1.5;
  border: 1px solid transparent;
}
.msg.show {
  display: block;
}
.msg.error {
  background: rgba(217, 72, 72, 0.08);
  color: var(--red);
  border-color: rgba(217, 72, 72, 0.18);
}
.msg.success {
  background: rgba(15, 159, 110, 0.08);
  color: var(--green);
  border-color: rgba(15, 159, 110, 0.18);
}
.msg.info {
  background: var(--surface-2);
  color: var(--text-2);
  border-color: var(--border);
}

.msg-actions {
  display: none;
  gap: 10px;
  margin-top: 10px;
}
.msg-actions.show {
  display: flex;
}
.msg-action-btn {
  flex: 1;
  padding: 11px 14px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border-h);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s;
}
.msg-action-btn:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* ============================================
   Spinner
   ============================================ */
.loading-spinner {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.55s linear infinite;
  margin-right: 6px;
  vertical-align: middle;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   Back link
   ============================================ */
.back-link {
  text-align: center;
  margin-top: 20px;
}
.back-link a {
  color: var(--text-3);
  font-size: 12.5px;
  text-decoration: none;
  transition: color 0.2s;
}
.back-link a:hover {
  color: var(--text-2);
}

/* ============================================
   Note (legacy compat)
   ============================================ */
.note {
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 6px;
  padding-left: 4px;
}
.note.valid {
  color: var(--green);
}
.note.invalid {
  color: var(--red);
}

/* ============================================
   Modal
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 18, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-box {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  width: 100%;
  max-width: 400px;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.18),
    0 0 60px -20px var(--accent-glow);
  text-align: center;
  animation: slideUp 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes slideUp {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border: 1px solid rgba(26, 86, 240, 0.16);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--accent);
}
.modal-icon svg {
  width: 24px;
  height: 24px;
}

.modal-box h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}
.modal-box p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 22px;
}
.modal-input {
  margin-bottom: 20px;
  text-align: left;
}
.modal-actions {
  display: flex;
  gap: 10px;
}
.modal-submit {
  flex: 1;
  margin-top: 0;
}

/* ============================================
   Responsive
   ============================================ */
@media (min-width: 860px) {
  .card {
    padding: 44px 40px 36px;
  }
}

@media (max-width: 400px) {
  .card {
    padding: 28px 20px 22px;
    border-radius: 18px;
  }
  .session-card__actions {
    flex-direction: column;
  }
  .session-card__hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .session-card__chips {
    justify-content: flex-start;
  }
  .card-title {
    font-size: 20px;
  }
  .modal-box {
    padding: 28px 20px;
  }
  .modal-actions {
    flex-direction: column;
  }
  .btn-outline,
  .modal-submit {
    flex: none;
  }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .panel-right {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}
