/* Trikona Auth – Login Form (light card, yellow accent, LinkedIn button) */
:root {
  /* Typography & colors */
  --tri-font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --tri-text: #111827;                 /* gray-900 */
  --tri-muted: #6b7280;                /* gray-500 */
  --tri-surface: #ffffff;
  --tri-border: #f3f4f6;               /* gray-100 */

  /* Inputs */
  --tri-input: #ffffff;
  --tri-input-border: #d1d5db;         /* gray-300 */
  --tri-input-border-focus: #ffc000;

  /* Brand accents */
  --tri-primary: #ffc000;              /* yellow */
  --tri-primary-hover: #eab308;        /* yellow-500-ish */

  /* Effects */
  --tri-shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);

  /* Social: LinkedIn */
  --tri-li-blue: #0A66C2;
  --tri-li-blue-hover: #06539b;

  /* Layout helpers for fixed headers (tweak to your theme) */
  --site-header-h: 72px;               /* height of your sticky/fixed site header */
  --wp-adminbar-h-desktop: 32px;       /* WordPress admin bar (>= 783px) */
  --wp-adminbar-h-mobile: 46px;        /* WordPress admin bar (< 783px) */
}

html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--tri-font);
  background: #fff;
  color: var(--tri-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ====== Card container ====== */
.tri-wrap {
  position: relative;
  max-width: 28rem;
  width: 100%;
  /* Push below sticky/fixed header (and keep some vertical breathing room) */
  margin: calc(var(--site-header-h) + 24px) auto min(8vh, 64px);
  padding: 2.5rem;                     /* p-10 */
  background: var(--tri-surface);
  border: 1px solid var(--tri-border);
  border-radius: 1rem;                  /* rounded-2xl */
  box-shadow: var(--tri-shadow-lg);
  text-align: center;
  z-index: 1;                           /* keep above background visuals */
  top: 60px;
  margin-bottom: 90px !important;  
}

/* Add admin-bar offset if logged in */
.admin-bar .tri-wrap {
  margin-top: calc(var(--site-header-h) + var(--wp-adminbar-h-desktop) + 24px);
}
@media (max-width: 782px) {
  .admin-bar .tri-wrap {
    margin-top: calc(var(--site-header-h) + var(--wp-adminbar-h-mobile) + 24px);
  }
}

/* Improve scroll-to behavior with sticky headers (anchors/focus) */
html { scroll-padding-top: calc(var(--site-header-h) + var(--wp-adminbar-h-desktop)); }
@media (max-width: 782px) {
  html { scroll-padding-top: calc(var(--site-header-h) + var(--wp-adminbar-h-mobile)); }
}

.tri-wrap h1 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 .25rem 0;
}

.tri-muted {
  margin-top: .5rem;
  margin-bottom: 1.25rem;
  color: var(--tri-muted);
  font-size: .95rem;
}

/* Style an anchor within tri-block as LinkedIn button */
.tri-block a,
.tri-btn-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .75rem 1rem;
  border-radius: .5rem;
  background: var(--tri-li-blue);
  text-decoration: none;
  transition: background-color .15s ease, transform .1s ease, box-shadow .15s ease;
  box-shadow: 0 8px 18px rgba(10,102,194,.18);
  /* keep text white in all states */
  color: #fff;
}

/* keep text white across all link states (order matters: LVHA) */
.tri-block a:link,
.tri-btn-linkedin:link { color: #fff; }
.tri-block a:visited,
.tri-btn-linkedin:visited { color: #fff; }
.tri-block a:hover,
.tri-btn-linkedin:hover {
  color: #fff;                          /* prevent blue on hover */
  background: var(--tri-li-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(10,102,194,.20);
}
.tri-block a:active,
.tri-btn-linkedin:active { color: #fff; }

/* ensure any nested elements inherit white text */
.tri-btn-linkedin * ,
.tri-block a * { color: inherit; }

/* accessible focus */
.tri-block a:focus-visible,
.tri-btn-linkedin:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(10,102,194,.25), 0 8px 18px rgba(10,102,194,.18);
}

/* REMOVED the icon: previously added via ::before — no icon now */
/* (intentionally left out to satisfy “remove the in logo” requirement) */

/* ====== Fallback (admin-enabled) ====== */
.tri-fallback { text-align: left; }

.tri-hr {
  border: 0;
  height: 1px;
  background: #eee;
  margin: 1.5rem 0;
}

/* ====== Fields ====== */
.tri-field { margin-bottom: 1rem; }

.tri-field label {
  display: block;
  font-weight: 600;
  margin-bottom: .25rem;
  color: #374151; /* gray-700 */
}

.tri-field input {
  width: 100%;
  padding: .625rem .75rem;
  border: 1px solid var(--tri-input-border);
  border-radius: .5rem;
  background: var(--tri-input);
  color: #1f2937;                /* gray-800 */
  font-size: .95rem;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.tri-field input::placeholder { color: rgba(17,24,39,.55); }

/* Positioning only */
.tri-pass-wrap { position: relative; }
.tri-pass-input-wrap { position: relative; }
#triPass { padding-right: 2.25rem; } /* make room for the icon */

/* Password toggle eye icon - plain, no background/border */
.tri-pass-toggle {
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .25rem;
  border: none !important;
  outline: none !important;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  line-height: 0;
  cursor: pointer;
  color: #6b7280;
  transition: opacity .15s ease;
}

.tri-pass-toggle:hover {
  opacity: 0.7;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.tri-pass-toggle:focus,
.tri-pass-toggle:focus-visible,
.tri-pass-toggle:active {
  opacity: 0.7;
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.tri-pass-toggle svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
  stroke: currentColor;
  fill: none;
}

/* Kill Chrome autofill yellow */
.tri-field input:-webkit-autofill,
.tri-field input:-webkit-autofill:hover,
.tri-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #111;
  caret-color: #111;
  -webkit-box-shadow: 0 0 0 1000px var(--tri-input) inset !important;
          box-shadow: 0 0 0 1000px var(--tri-input) inset !important;
  transition: background-color 9999s ease-out 0s;
}

/* Errors */
.tri-error {
  color: #d63638;
  font-size: .85rem;
  margin-top: .25rem;
}

/* ====== Remember + Forgot row ====== */
.tri-aux-row {
  display: flex;
  align-items: center;
  justify-content: space-between;   /* remember left, forgot right */
  gap: 12px;
  margin-top: .25rem;
  margin-bottom: .25rem;
}

.tri-remember {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  user-select: none;
  color: #374151; /* gray-700 */
  font-size: .95rem;
}

.tri-remember input {
  width: 1rem;
  height: 1rem;
}

.tri-forgot {
  margin-left: auto;                  /* push to the right */
  font-size: .95rem;
  color: var(--tri-primary);          /* yellow highlight */
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dotted rgba(234,179,8,.45);
}
.tri-forgot:hover { text-decoration: underline; }
.tri-forgot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,192,0,.25);
  border-radius: .25rem;
}

.tri-aux-row--end {
  justify-content: flex-end;
}

/* Resend verification page form */
.tri-form.tri-resend {
  display: grid;
  gap: 14px;
}

.tri-form.tri-resend .tri-field {
  margin-bottom: 0;
}

.tri-form.tri-resend .tri-aux-row {
  margin-top: 0;
  margin-bottom: 0;
}

.tri-form.tri-resend #tri-resend-recaptcha .g-recaptcha {
  transform-origin: left top;
}

.tri-form.tri-resend .tri-actions {
  margin-top: 0;
}

/* ====== Actions / Buttons ====== */
.tri-actions {
  text-align: center;
  margin-top: 1.25rem;
  width: 100%;
}

.tri-btn {
  display: inline-block;
  padding: .75rem 1.1rem;
  border-radius: .5rem;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.tri-btn-primary {
  background: var(--tri-primary);
  color: #111;
  transition: background-color .15s ease, box-shadow .15s ease, transform .1s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  width: 100%;
}

.tri-actions .tri-btn,
.tri-actions .tri-btn-primary {
  width: 100%;                         /* full width like inputs */
}

.tri-btn-primary:hover {
  color: #000 !important;
  background: var(--tri-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0,0,0,.16);
}
.tri-btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,192,0,.3), 0 8px 18px rgba(0,0,0,.12);
}
.tri-btn-primary:disabled,
.tri-form[aria-busy="true"] .tri-btn-primary,
#triPwLogin[aria-busy="true"] .tri-btn-primary {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

/* ====== Alerts ====== */
.tri-alert {
  margin-top: .75rem;
  font-size: .95rem;
  color: #111827;
  text-align: center;
}

.tri-alert.tri-alert--error {
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  text-align: center;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.25);
  color: #d63638;
}

.tri-auth-section-linkedin .tri-alert--error {
  margin-top: 0.75rem;
}

/* ====== Divider ===== */
.divider{
  display:flex;
  align-items:center;
  gap:.75rem;              /* space around the text */
  margin:1.25rem 0;
  text-align:center;
}
.divider::before,
.divider::after{
  content:"";
  flex:1 1 0%;
  height:1px;
  background:#e5e7eb;      /* line color */
}
.divider > span{
  font:600 .9rem/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#6b7280;           /* text color */
  white-space:nowrap;
}

/* ====== Motion/accessibility niceties ====== */
@media (prefers-reduced-motion: reduce) {
  .tri-block a,
  .tri-btn,
  .tri-btn-primary {
    transition: none;
    transform: none;
  }
}

/* ====== Responsive ====== */
@media (max-width: 480px) {
  .tri-wrap {
    margin: calc(var(--site-header-h) + 16px) auto min(3vh, 24px);
    padding: 1.75rem;
  }
  .tri-auth-section {
    padding: 1rem;
  }
  .tri-block a { width: 100%; }
  .tri-aux-row { gap: 8px; }
}

/* ─── Scoped reset (card only) ───────────────────────────── */
.tri-page-shell *, .tri-page-shell *::before, .tri-page-shell *::after {
  box-sizing: border-box;
}

/* ─── Page shell: full-width dark section ────────────────── */
.tri-page-shell {
  width: 100%;
  min-height: calc(100vh - 160px); /* leave room for header/footer */
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  color: #fff;
  position: relative;
}

/* subtle grid texture */
.tri-page-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,180,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,180,0,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ─── Card ───────────────────────────────────────────────── */
.tri-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #0a0a0a;
  border: 1px solid rgba(255,180,0,.28);
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,180,0,.06),
    0 32px 80px rgba(0,0,0,.7),
    0 0 60px rgba(255,180,0,.04) inset;
  animation: cardIn .45s cubic-bezier(.22,1,.36,1) both;
}

@keyframes cardIn {
  from { opacity:0; transform:translateY(18px) scale(.97); }
  to   { opacity:1; transform:translateY(0)   scale(1);   }
}

/* amber top-bar accent */
.tri-wrap::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFB400 40%, #FF8C00 70%, transparent);
}

/* ─── Header ─────────────────────────────────────────────── */
.tri-header {
  padding: 2rem 2rem 0;
}

.tri-wrap h1 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: .35rem;
}

.tri-muted {
  font-size: .9rem;
  color: #bdbdbd;
  margin-bottom: 0;
}

/* ─── Body ───────────────────────────────────────────────── */
.tri-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tri-auth-section {
  position: relative;
  width: 100%;
  padding: 1.15rem;
  border-radius: 1.1rem;
}

.tri-auth-section-head {
  margin-bottom: 0.9rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tri-auth-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 22px;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.tri-auth-section h2,
.tri-auth-section h3 {
  display: block !important;
  margin: 0.65rem 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.tri-auth-section p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #a8b0bd;
}

.tri-auth-section-linkedin {
  margin-top: 1.25rem;
  background:
    linear-gradient(135deg, rgba(10,102,194,.18), rgba(10,102,194,.045)),
    rgba(255,255,255,.025);
  border: 1px solid rgba(10,102,194,.42);
  box-shadow: 0 16px 34px rgba(10,102,194,.10);
}

.tri-auth-section-linkedin .tri-auth-kicker {
  background: rgba(10,102,194,.22);
  color: #a9d3ff;
}

.tri-auth-section-resend {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}

.tri-auth-section-resend .tri-auth-kicker {
  background: rgba(19,115,51,.18);
  color: #8fd9a8;
}

.tri-auth-section-password {
  background: rgba(255,255,255,.035);
  border: 1px dashed rgba(255,180,0,.34);
}

.tri-auth-section-password .tri-auth-kicker {
  background: rgba(255,180,0,.13);
  color: #ffd679;
}

/* ─── LinkedIn button ────────────────────────────────────── */
.tri-block { width: 100%; }

.tri-btn-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: .9rem 1.25rem;
  border-radius: .875rem;
  background: rgba(10,102,194,.1);
  border: 1px solid rgba(10,102,194,.4);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .2s;
  position: relative;
  overflow: hidden;
}

.tri-btn-linkedin::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,102,194,.12);
  opacity: 0;
  transition: opacity .25s;
}

.tri-btn-linkedin:hover { border-color: #0A66C2; background: rgba(10,102,194,.2); }
.tri-btn-linkedin:hover::before { opacity: 1; }
.tri-btn-linkedin:active { transform: scale(.98); }

/* LinkedIn icon placeholder (rendered by shortcode) */
.tri-btn-linkedin svg,
.tri-btn-linkedin img { width: 22px; height: 22px; border-radius: 6px; }

/* ─── Divider ────────────────────────────────────────────── */
.divider {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0.25rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
}

.divider span {
  padding: 0 .75rem;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #bdbdbd;
  white-space: nowrap;
}

.tri-divider-label {
  display: block;
  font-size: .75rem;
  color: #bdbdbd;
  text-align: center;
  margin-bottom: 1rem;
}

/* ─── Form fields ────────────────────────────────────────── */
.tri-fallback { width: 100%; }

#triPwLogin { display: flex; flex-direction: column; gap: 0.75rem; }

.tri-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.tri-field label {
  font-size: .82rem;
  font-weight: 500;
  color: #d1d5db;
  margin-left: .25rem;
}

.tri-field input[type="email"],
.tri-field input[type="password"],
.tri-field input[type="text"] {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  padding: .75rem 1rem .75rem 2.85rem;
  color: #fff;
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}

.tri-field input:focus {
  border-color: #FFB400;
  box-shadow: 0 0 0 2px rgba(255,180,0,.18);
}

.tri-field input::placeholder { color: #bdbdbd; }

/* icon inside field */
.tri-field-icon {
  position: relative;
}

.tri-field-icon .field-icon {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #4b5563;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.tri-field-icon .field-icon svg { width: 18px; height: 18px; stroke-width: 1.8; }

/* password wrapper */
.tri-pass-wrap { position: relative; }
.tri-pass-wrap .tri-field-icon { display: contents; }

.tri-pass-toggle {
  position: absolute;
  right: .85rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #4b5563;
  padding: .25rem;
  display: flex;
  align-items: center;
  transition: color .2s;
  margin-top: 1.1rem; /* offset for label height */
}

.tri-pass-toggle:hover { color: #FFB400; }
.tri-pass-toggle svg { width: 18px; height: 18px; stroke-width: 1.8; }

/* error text */
.tri-error {
  font-size: .75rem;
  color: #f87171;
  margin-left: .25rem;
  margin-top: .1rem;
}

/* ─── Remember / Forgot row ──────────────────────────────── */
.tri-aux-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
}

.tri-remember {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  color: #9ca3af;
  user-select: none;
}

.tri-remember input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #FFB400;
  border-radius: 4px;
  cursor: pointer;
}

.tri-forgot, .tri-link {
  color: #FFB400;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}
.tri-forgot:hover, .tri-link:hover { color: #FF8C00; }

/* ─── Primary submit button ──────────────────────────────── */
.tri-actions { width: 100%; }

.tri-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .9rem 1.5rem;
  border-radius: .875rem;
  background: #FFB400;
  border: none;
  color: #000;
  font-size: 1rem;
  font-weight: 600 !important;
  cursor: pointer;
  letter-spacing: -.01em;
  position: relative;
  overflow: hidden;
  transition: color .3s;
}

/* slide-fill hover (matches SlideFillButton) */
.tri-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-101%);
  z-index: -1;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.tri-btn-primary:hover { color: #000 !important; }
.tri-btn-primary:hover::after { transform: translateX(0); }
.tri-btn-primary span { position: relative; z-index: 1; }
.tri-btn-primary:active { transform: scale(.98); }

/* ─── Alert / feedback ───────────────────────────────────── */
.tri-alert {
  font-size: .82rem;
  padding: .5rem .75rem;
  border-radius: .5rem;
  min-height: 0;
  transition: all .25s;
}
.tri-alert:not(:empty) {
  background: rgba(248,113,113,.1);
  border: 1px solid rgba(248,113,113,.25);
  color: #f87171;
}

/* ─── reCAPTCHA field ────────────────────────────────────── */
#tri-recaptcha { margin-top: .25rem; }

/* ─── Scrollbar (WebKit) — scoped ───────────────────────── */
.tri-page-shell ::-webkit-scrollbar { width: 6px; }
.tri-page-shell ::-webkit-scrollbar-track { background: #0a0a0a; }
.tri-page-shell ::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }

/* ====== ConstruWX login polish pass ======
   Final scoped layer to override the older half-dark/half-light login styles above. */
body.page-template-login-form,
body:has(.tri-wrap) {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,180,0,.16), transparent 30%),
    linear-gradient(180deg, #f4f4f4, #e8e8e8);
}

.tri-wrap {
  width: min(100% - 32px, 440px);
  max-width: 440px;
  margin: calc(var(--site-header-h) + 28px) auto 52px;
  padding: 26px 28px 30px;
  overflow: hidden;
  border: 1px solid #111;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 112%, rgba(255,180,0,.13), transparent 44%),
    linear-gradient(180deg, #fff, #f7f7f7);
  box-shadow:
    0 28px 70px rgba(0,0,0,.22),
    0 0 28px rgba(255,180,0,.16),
    inset 0 0 0 1px rgba(255,255,255,.7);
  color: #111;
  text-align: center;
}

.tri-wrap::before {
  display: none;
}

.tri-login-brand {
 /* display: inline-flex; */
  display:none;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.tri-login-brand img {
  display: block;
  width: min(250px, 72vw);
  max-height: 70px;
  object-fit: contain;
}

.tri-wrap h1 {
  display: block;
  margin: 0 0 6px;
  color: #111;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.tri-muted {
  margin: 0 0 18px;
  color: #454545;
  font-size: 15px;
  line-height: 1.5;
}

.tri-desktop-only {
  display: none;
}

.tri-mobile-title {
  display: inline;
}

.tri-auth-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tri-auth-section {
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  text-align: left;
}

.tri-auth-visual {
  display: none;
}

.tri-auth-section-head {
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tri-auth-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.tri-auth-section h2,
.tri-auth-section h3 {
  display: block !important;
  margin: 10px 0 5px;
  color: #111;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.tri-auth-section p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
}

.tri-auth-section-linkedin {
  margin: 0 0 16px;
  border: 1px solid rgba(10,102,194,.22);
  background: linear-gradient(180deg, rgba(10,102,194,.07), rgba(10,102,194,.025));
  box-shadow: 0 16px 34px rgba(10,102,194,.09);
}

.tri-auth-section-linkedin .tri-auth-kicker {
  background: #0a66c2;
  color: #fff;
}

.tri-auth-section-password {
  border: 1px solid rgba(17,17,17,.18);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,180,0,.14);
}

.tri-auth-section-password .tri-auth-kicker {
  background: #111;
  color: #ffb400;
}

@media (min-width: 900px) {
  body.page-template-login-form,
  body:has(.tri-wrap) {
    background:
      radial-gradient(circle at 15% 10%, rgba(48,116,196,.12), transparent 26%),
      radial-gradient(circle at 84% 12%, rgba(255,180,0,.08), transparent 24%),
      linear-gradient(180deg, #f7f9fc, #eef1f6);
  }

  .tri-desktop-only {
    display: block;
  }

  .tri-mobile-title {
    display: none;
  }

  .tri-wrap {
    --tri-auth-register-image:
      linear-gradient(180deg, rgba(237,246,255,.92) 0%, rgba(237,246,255,.56) 45%, rgba(10,45,94,.78) 100%),
      linear-gradient(132deg, transparent 0 55%, rgba(14,67,127,.18) 55% 57%, transparent 57% 100%),
      linear-gradient(160deg, #eaf4ff 0 42%, #ffffff 42% 64%, #c7dbf3 64% 100%);
    width: min(100% - 56px, 1320px);
    max-width: 1320px;
    margin-top: calc(var(--site-header-h) + 24px);
    padding: 12px;
    border: 0;
    border-radius: 22px;
    background: #f8fafc;
    box-shadow: 0 24px 60px rgba(15,23,42,.16);
  }

  .tri-login-brand {
    display: none;
  }

  .tri-wrap h1 {
    display: none;
  }

  .tri-muted {
    display: none;
  }

  .tri-auth-layout--split {
    display: grid;
    grid-template-columns: minmax(440px, .95fr) minmax(40px, auto) minmax(460px, 1fr);
    align-items: stretch;
    gap: 0;
  }

  .tri-auth-layout--split .tri-auth-section {
    display: flex;
    flex-direction: column;
    min-height: 760px;
  }

  .tri-auth-section-linkedin {
    margin: 0;
    padding: 40px 46px;
    overflow: hidden;
    border: 0;
    border-radius: 22px 0 0 22px;
    background-image: var(--tri-auth-register-image);
    background-position: center;
    background-size: cover;
    box-shadow: inset -120px -160px 220px rgba(6,38,84,.22);
    order: 1;
  }

  .tri-auth-section-password {
    align-self: center;
    min-height: 0 !important;
    margin: 54px 48px;
    padding: 42px 48px 38px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 24px;
    background:
      radial-gradient(circle at 50% 0%, rgba(255,180,0,.06), transparent 26%),
      #fff;
    box-shadow:
      0 20px 70px rgba(15,23,42,.11),
      inset 0 0 0 1px rgba(255,255,255,.8);
    order: 3;
  }

  .tri-auth-visual {
    display: none;
  }

  .tri-auth-panel-brand {
    margin-bottom: 72px;
  }

  .tri-auth-panel-brand img {
    display: block;
    width: min(290px, 70%);
    max-height: 86px;
    object-fit: contain;
    object-position: left center;
  }

  .tri-auth-panel-intro {
    max-width: 370px;
  }

  .tri-auth-panel-intro h2 {
    margin: 0 0 28px;
    color: #0f2145;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .tri-auth-panel-intro p {
    margin: 0;
    color: #314362;
    font-size: 17px;
    line-height: 1.65;
  }

  .tri-feature-list {
    display: grid;
    gap: 22px;
    max-width: 390px;
    margin-top: 34px;
  }

  .tri-feature {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
  }

  .tri-feature-icon {
    position: relative;
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 13px;
    box-shadow: 0 10px 22px rgba(15,23,42,.12);
  }

  .tri-feature-icon::before,
  .tri-feature-icon::after {
    position: absolute;
    content: "";
  }

  .tri-feature-learn .tri-feature-icon {
    background: linear-gradient(135deg, #e9f3ff, #d6e9ff);
    border: 1px solid rgba(36,99,191,.16);
  }

  .tri-feature-learn .tri-feature-icon::before {
    left: 14px;
    top: 17px;
    width: 28px;
    height: 18px;
    background: #12356a;
    clip-path: polygon(50% 0, 100% 32%, 50% 64%, 0 32%);
  }

  .tri-feature-career .tri-feature-icon {
    background: linear-gradient(135deg, #e6fff1, #d4f5e2);
    border: 1px solid rgba(18,148,84,.16);
  }

  .tri-feature-career .tri-feature-icon::before {
    left: 17px;
    top: 18px;
    width: 22px;
    height: 20px;
    border-radius: 4px;
    background: #189b5d;
  }

  .tri-feature-career .tri-feature-icon::after {
    left: 23px;
    top: 14px;
    width: 10px;
    height: 8px;
    border: 3px solid #189b5d;
    border-bottom: 0;
    border-radius: 6px 6px 0 0;
  }

  .tri-feature-connect .tri-feature-icon {
    background: linear-gradient(135deg, #f0ebff, #e1d8ff);
    border: 1px solid rgba(107,73,220,.16);
  }

  .tri-feature-connect .tri-feature-icon::before {
    left: 14px;
    top: 17px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6a49dc;
    box-shadow: 16px 0 0 #6a49dc, 8px 14px 0 #6a49dc;
  }

  .tri-feature-build .tri-feature-icon {
    background: linear-gradient(135deg, #fff3e7, #ffe4c7);
    border: 1px solid rgba(248,134,31,.18);
  }

  .tri-feature-build .tri-feature-icon::before {
    left: 17px;
    bottom: 16px;
    width: 5px;
    height: 14px;
    background: #f58a1f;
    box-shadow: 9px -6px 0 #f58a1f, 18px -13px 0 #f58a1f;
  }

  .tri-feature strong,
  .tri-feature small {
    display: block;
  }

  .tri-feature strong {
    color: #10254d;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
  }

  .tri-feature small {
    margin-top: 4px;
    color: #30415f;
    font-size: 14px;
    line-height: 1.45;
  }

  .tri-auth-section-linkedin > .tri-auth-section-head {
    display: none;
  }

  .tri-register-cta {
    width: min(100%, 360px);
    margin-top: auto;
    padding: 28px 26px 26px;
    border-radius: 14px;
    background: linear-gradient(135deg, #14366f, #061e48);
    box-shadow: 0 18px 38px rgba(5,30,72,.26);
  }

  .tri-register-cta-copy {
    position: relative;
    margin: 0 0 20px;
    padding-left: 58px;
    color: #fff;
  }

  .tri-register-cta-copy::before {
    position: absolute;
    left: 0;
    top: 4px;
    width: 38px;
    height: 24px;
    border: 3px solid rgba(255,255,255,.88);
    border-top: 0;
    border-radius: 0 0 19px 19px;
    content: "";
  }

  .tri-register-cta-copy::after {
    position: absolute;
    left: 8px;
    top: -6px;
    width: 12px;
    height: 12px;
    border: 3px solid rgba(255,255,255,.88);
    border-radius: 50%;
    box-shadow: 18px 0 0 -1px rgba(255,255,255,.88);
    content: "";
  }

  .tri-register-cta-copy strong,
  .tri-register-cta-copy span {
    display: block;
  }

  .tri-register-cta-copy strong {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
  }

  .tri-register-cta-copy span {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.5;
  }

  .tri-register-cta .tri-btn-linkedin,
  .tri-register-cta a {
    min-height: 58px;
    border-color: rgba(255,255,255,.7);
    border-radius: 8px;
    background: #fff;
    color: #1b5ebd !important;
    box-shadow: none;
    font-weight: 900;
  }

  .tri-auth-section-head {
    align-items: center;
    margin-bottom: 36px;
    text-align: center;
  }

  .tri-auth-section-password .tri-auth-kicker {
    display: none;
  }

  .tri-login-safe-icon {
    position: relative;
    width: 74px;
    height: 74px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: #fff3df;
    border: 1px solid #ffe0b5;
  }

  .tri-login-safe-icon::before {
    position: absolute;
    left: 23px;
    top: 20px;
    width: 28px;
    height: 32px;
    border: 4px solid #ff9815;
    border-radius: 9px 9px 12px 12px;
    clip-path: polygon(50% 0, 100% 18%, 100% 60%, 50% 100%, 0 60%, 0 18%);
    content: "";
  }

  .tri-login-safe-icon::after {
    position: absolute;
    left: 33px;
    top: 33px;
    width: 12px;
    height: 7px;
    border-left: 3px solid #ff9815;
    border-bottom: 3px solid #ff9815;
    transform: rotate(-45deg);
    content: "";
  }

  .tri-auth-section h2,
  .tri-auth-section h3 {
    margin: 0;
    color: #10204a;
    font-size: 34px;
    line-height: 1.15;
  }

  .tri-auth-section-password .tri-auth-section-head p {
    margin-top: 18px;
    color: #465779;
    font-size: 17px;
  }

  .tri-auth-section-password .tri-fallback {
    margin-top: 0;
  }

  #triPwLogin {
    gap: 20px;
  }

  .tri-field label {
    margin-bottom: 10px;
    color: #0d1939;
    font-size: 14px;
    font-weight: 900;
  }

  .tri-field input[type="email"],
  .tri-field input[type="password"],
  .tri-field input[type="text"] {
    min-height: 60px;
    padding: 14px 52px 14px 56px;
    border-color: #d7dde7;
    border-radius: 10px;
    background:
      linear-gradient(90deg, rgba(107,121,146,.85), rgba(107,121,146,.85)) 22px 50% / 19px 2px no-repeat,
      #fff;
    color: #111827;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(15,23,42,.03);
  }

  .tri-pass-wrap .tri-pass-input-wrap::before {
    position: absolute;
    left: 24px;
    top: 50%;
    width: 16px;
    height: 13px;
    border: 2px solid #718096;
    border-radius: 3px;
    transform: translateY(-35%);
    content: "";
    z-index: 1;
  }

  .tri-pass-wrap .tri-pass-input-wrap::after {
    position: absolute;
    left: 28px;
    top: 50%;
    width: 8px;
    height: 9px;
    border: 2px solid #718096;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    transform: translateY(-96%);
    content: "";
    z-index: 1;
  }

  .tri-field:first-child {
    position: relative;
  }

  .tri-field:first-child::before {
    position: absolute;
    left: 23px;
    bottom: 19px;
    width: 20px;
    height: 15px;
    border: 2px solid #718096;
    border-radius: 3px;
    content: "";
    z-index: 1;
  }

  .tri-field:first-child::after {
    position: absolute;
    left: 26px;
    bottom: 24px;
    width: 14px;
    height: 8px;
    border-left: 2px solid #718096;
    border-bottom: 2px solid #718096;
    transform: rotate(-45deg);
    content: "";
    z-index: 1;
  }

  .tri-pass-toggle {
    right: 22px;
    width: 34px;
    height: 34px;
    color: #6f7f9b;
  }

  .tri-aux-row {
    font-size: 15px;
  }

  .tri-aux-row--end {
    justify-content: flex-end;
    margin-top: -12px;
  }

  .tri-remember {
    color: #52627f;
    font-size: 15px;
  }

  .tri-forgot,
  .tri-link {
    border-bottom: 0;
    color: #0d5cd7;
    font-size: 15px;
  }

  .tri-actions {
    margin-top: 8px;
  }

  .tri-btn-primary,
  .tri-actions .tri-btn-primary {
    min-height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, #397ce4, #164db7);
    color: #fff !important;
    font-size: 17px;
    box-shadow: 0 14px 26px rgba(36,91,189,.26);
  }

  .tri-btn-primary:hover {
    background: linear-gradient(135deg, #256fe0, #113f9e);
    color: #fff !important;
  }

  .tri-secure-note {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-top: 26px;
    padding: 20px 24px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 14px;
    background: #fbfcff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.8);
  }

  .tri-secure-note-icon {
    position: relative;
    display: block;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: #2f74df;
    box-shadow: 0 10px 18px rgba(47,116,223,.22);
    clip-path: polygon(50% 0, 100% 18%, 100% 64%, 50% 100%, 0 64%, 0 18%);
  }

  .tri-secure-note-icon::before {
    position: absolute;
    left: 12px;
    top: 14px;
    width: 13px;
    height: 7px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
    content: "";
  }

  .tri-secure-note strong,
  .tri-secure-note small {
    display: block;
  }

  .tri-secure-note strong {
    color: #10254d;
    font-size: 14px;
    font-weight: 900;
  }

  .tri-secure-note small {
    margin-top: 6px;
    color: #465779;
    font-size: 13px;
    line-height: 1.45;
  }

  .divider {
    order: 2;
    width: 44px;
    margin: 0;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    gap: 14px;
    transform: translateX(-22px);
    z-index: 2;
  }

  .divider::before,
  .divider::after {
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(17,17,17,.28), transparent);
  }

  .divider > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(17,17,17,.14);
    border-radius: 999px;
    background: #fff;
    color: #142654;
    box-shadow: 0 10px 24px rgba(0,0,0,.1);
  }
}

.tri-block {
  width: 100%;
}

.tri-block a,
.tri-btn-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid #0a66c2;
  border-radius: 12px;
  background: #0a66c2;
  color: #fff !important;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(10,102,194,.24);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.tri-block a:hover,
.tri-btn-linkedin:hover {
  background: #084f98;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(10,102,194,.3);
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

.divider::before,
.divider::after {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17,17,17,.24), transparent);
  content: "";
}

.divider > span {
  color: #555;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.tri-fallback {
  width: 100%;
  text-align: left;
}

#triPwLogin {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tri-field {
  margin: 0;
}

.tri-field label {
  display: block;
  margin: 0 0 6px;
  color: #191919;
  font-size: 13px;
  font-weight: 800;
}

.tri-field input[type="email"],
.tri-field input[type="password"],
.tri-field input[type="text"] {
  width: 100%;
  min-height: 46px;
  padding: 10px 42px 10px 13px;
  border: 1px solid rgba(17,17,17,.22);
  border-radius: 11px;
  background: #f7f7f7;
  color: #111;
  font-size: 15px;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.tri-field input:focus {
  border-color: #ffb400;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,180,0,.2);
}

.tri-pass-wrap {
  position: relative;
}

.tri-pass-input-wrap {
  position: relative;
}

.tri-pass-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 !important;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  color: #333;
  cursor: pointer;
  transform: translateY(-50%);
  line-height: 0;
}

.tri-pass-toggle:hover,
.tri-pass-toggle:focus {
  background: transparent !important;
  box-shadow: none !important;
  color: #111;
}

.tri-pass-toggle:active,
.tri-pass-toggle:focus-visible {
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.tri-wrap .tri-pass-input-wrap button.tri-pass-toggle[type="button"],
.tri-wrap .tri-pass-input-wrap button.tri-pass-toggle[type="button"]:hover,
.tri-wrap .tri-pass-input-wrap button.tri-pass-toggle[type="button"]:focus,
.tri-wrap .tri-pass-input-wrap button.tri-pass-toggle[type="button"]:active,
.tri-wrap .tri-pass-input-wrap button.tri-pass-toggle[type="button"]:focus-visible {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.tri-pass-input-wrap .tri-pass-toggle svg {
  display: block;
}

.tri-aux-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
}

.tri-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-size: 13px;
}

.tri-remember input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #ffb400;
}

.tri-forgot,
.tri-link {
  color: #111;
  border-bottom: 1px dotted rgba(255,180,0,.75);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.tri-forgot:hover,
.tri-link:hover {
  color: #9a6c00;
}

#tri-recaptcha {
  margin-top: 2px;
}

.tri-actions {
  width: 100%;
  margin-top: 2px;
}

.tri-btn-primary,
.tri-actions .tri-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 13px 18px;
  border: 0;
  border-radius: 12px;
  background: #ffb400;
  color: #111 !important;
  font-size: 15px;
  font-weight: 900 !important;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(255,180,0,.28);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.tri-btn-primary:hover {
  background: #ffc42e;
  color: #111 !important;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(255,180,0,.34);
}

.tri-alert:not(:empty) {
  margin-top: 4px;
  border: 1px solid rgba(214,54,56,.25);
  border-radius: 10px;
  background: rgba(214,54,56,.08);
  color: #9b1c1f;
}

@media (max-width: 480px) {
  .tri-wrap {
    width: min(100% - 24px, 440px);
    margin-top: calc(var(--site-header-h) + 18px);
    padding: 22px 18px 24px;
  }

  .tri-login-brand img {
    width: min(230px, 74vw);
  }

  .tri-wrap h1 {
    font-size: 25px;
  }

  .tri-auth-section {
    padding: 15px;
  }

  .tri-auth-section h2,
  .tri-auth-section h3 {
    font-size: 21px;
  }
}

@media (min-width: 900px) {
  .tri-feature-icon {
    overflow: hidden;
  }

  .tri-feature-icon::before,
  .tri-feature-icon::after {
    box-sizing: border-box;
  }

  .tri-feature-learn .tri-feature-icon {
    background:
      radial-gradient(circle at 28% 22%, rgba(255,255,255,.95), transparent 18px),
      linear-gradient(135deg, #edf6ff, #d6e9ff);
  }

  .tri-feature-learn .tri-feature-icon::before {
    left: 14px;
    top: 18px;
    width: 28px;
    height: 18px;
    background: #12356a;
    border-radius: 2px;
    clip-path: polygon(50% 0, 100% 28%, 100% 40%, 50% 70%, 0 40%, 0 28%);
  }

  .tri-feature-learn .tri-feature-icon::after {
    left: 25px;
    top: 30px;
    width: 6px;
    height: 11px;
    border-left: 2px solid #12356a;
    border-bottom: 2px solid #12356a;
    border-radius: 0 0 0 5px;
  }

  .tri-feature-career .tri-feature-icon {
    background:
      radial-gradient(circle at 28% 22%, rgba(255,255,255,.95), transparent 18px),
      linear-gradient(135deg, #e6fff1, #d3f5e2);
  }

  .tri-feature-career .tri-feature-icon::before {
    left: 16px;
    top: 20px;
    width: 24px;
    height: 20px;
    border-radius: 5px;
    background:
      linear-gradient(#fff, #fff) 50% 45% / 10px 3px no-repeat,
      #189b5d;
    box-shadow: inset 0 7px 0 rgba(255,255,255,.12);
  }

  .tri-feature-career .tri-feature-icon::after {
    left: 22px;
    top: 15px;
    width: 12px;
    height: 8px;
    border: 3px solid #189b5d;
    border-bottom: 0;
    border-radius: 7px 7px 0 0;
  }

  .tri-feature-connect .tri-feature-icon {
    background:
      radial-gradient(circle at 28% 22%, rgba(255,255,255,.95), transparent 18px),
      linear-gradient(135deg, #f0ebff, #e0d6ff);
  }

  .tri-feature-connect .tri-feature-icon::before {
    left: 22px;
    top: 13px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6a49dc;
    box-shadow:
      -11px 14px 0 -1px #6a49dc,
      11px 14px 0 -1px #6a49dc;
  }

  .tri-feature-connect .tri-feature-icon::after {
    left: 13px;
    top: 30px;
    width: 30px;
    height: 12px;
    border-top: 3px solid #6a49dc;
    border-radius: 50% 50% 0 0;
  }

  .tri-feature-build .tri-feature-icon {
    background:
      radial-gradient(circle at 28% 22%, rgba(255,255,255,.95), transparent 18px),
      linear-gradient(135deg, #fff3e7, #ffe1bf);
  }

  .tri-feature-build .tri-feature-icon::before {
    left: 14px;
    bottom: 15px;
    width: 6px;
    height: 13px;
    border-radius: 2px 2px 0 0;
    background: #f58a1f;
    box-shadow:
      10px -7px 0 #f58a1f,
      20px -15px 0 #f58a1f;
  }

  .tri-feature-build .tri-feature-icon::after {
    left: 15px;
    top: 18px;
    width: 25px;
    height: 18px;
    border-top: 3px solid #f58a1f;
    border-right: 3px solid #f58a1f;
    transform: skewY(-28deg);
  }

  .tri-login-safe-icon {
    background:
      radial-gradient(circle at 50% 34%, rgba(255,255,255,.9), transparent 20px),
      linear-gradient(135deg, #fff3df, #ffe1bb);
    box-shadow: 0 14px 28px rgba(255,152,21,.14);
  }

  .tri-login-safe-icon::before {
    left: 22px;
    top: 17px;
    width: 30px;
    height: 36px;
    border: 4px solid #ff9815;
    border-radius: 10px;
    background: rgba(255,255,255,.22);
    clip-path: polygon(50% 0, 100% 16%, 100% 58%, 50% 100%, 0 58%, 0 16%);
  }

  .tri-login-safe-icon::after {
    left: 32px;
    top: 32px;
    width: 14px;
    height: 8px;
    border-left: 4px solid #ff9815;
    border-bottom: 4px solid #ff9815;
  }

  .tri-auth-layout--split {
    grid-template-columns: minmax(430px, .92fr) minmax(500px, 1fr);
    align-items: stretch;
    gap: 42px;
  }

  .tri-auth-layout--split .tri-auth-section {
    min-height: 790px;
  }

  .tri-auth-section-linkedin {
    padding: 44px 46px 36px;
    border-radius: 22px;
  }

  .tri-auth-section-password {
    align-self: stretch;
    justify-content: center;
    order: 2;
    min-height: 790px !important;
    margin: 0;
    padding: 52px 56px;
  }

  .tri-auth-panel-brand {
    margin-bottom: 46px;
  }

  .tri-feature-list {
    gap: 17px;
    margin-top: 28px;
  }

  .tri-register-cta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: min(100%, 390px);
    min-height: 285px;
    padding: 34px 30px 30px;
  }

  .tri-register-cta-copy {
    margin-bottom: 28px;
  }

  .tri-register-cta-copy strong {
    font-size: 24px;
  }

  .tri-register-cta-copy span {
    max-width: 260px;
    font-size: 15px;
  }

  .tri-register-cta .tri-btn-linkedin,
  .tri-register-cta a {
    min-height: 58px;
    border-color: rgba(255,255,255,.7);
    border-radius: 8px;
    background: #fff !important;
    color: #1b5ebd !important;
    box-shadow: none;
    font-weight: 900;
  }

  .tri-register-cta .tri-btn-linkedin *,
  .tri-register-cta a * {
    color: inherit !important;
    opacity: 1 !important;
  }

  .tri-register-cta .tri-btn-linkedin:hover,
  .tri-register-cta a:hover {
    background: #f6f9ff;
    color: #164fa8 !important;
    box-shadow: none;
    transform: translateY(-1px);
  }

  .tri-auth-section-password .tri-field label {
    margin-bottom: 10px;
    color: #0d1939;
    font-size: 14px;
    font-weight: 900;
  }

  .tri-auth-section-password .tri-field input[type="email"],
  .tri-auth-section-password .tri-field input[type="password"],
  .tri-auth-section-password .tri-field input[type="text"] {
    min-height: 60px;
    padding: 14px 52px 14px 56px;
    border-color: #d7dde7;
    border-radius: 10px;
    background:
      linear-gradient(90deg, rgba(107,121,146,.85), rgba(107,121,146,.85)) 22px 50% / 19px 2px no-repeat,
      #fff;
    color: #111827;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(15,23,42,.03);
  }

  .tri-auth-section-password .tri-pass-toggle {
    right: 22px;
    width: 34px;
    height: 34px;
    color: #6f7f9b;
  }

  .tri-auth-section-password .tri-aux-row {
    font-size: 15px;
  }

  .tri-auth-section-password .tri-aux-row--end {
    justify-content: flex-end;
    margin-top: -12px;
  }

  .tri-auth-section-password .tri-remember {
    color: #52627f;
    font-size: 15px;
  }

  .tri-auth-section-password .tri-forgot,
  .tri-auth-section-password .tri-link {
    border-bottom: 0;
    color: #0d5cd7;
    font-size: 15px;
  }

  .tri-auth-section-password .tri-actions {
    margin-top: 8px;
  }

  .tri-auth-section-password .tri-btn-primary,
  .tri-auth-section-password .tri-actions .tri-btn-primary {
    min-height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, #397ce4, #164db7);
    color: #fff !important;
    font-size: 17px;
    box-shadow: 0 14px 26px rgba(36,91,189,.26);
  }

  .tri-auth-section-password .tri-btn-primary:hover {
    background: linear-gradient(135deg, #256fe0, #113f9e);
    color: #fff !important;
    box-shadow: 0 16px 28px rgba(36,91,189,.3);
  }

  .tri-login-option-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 2px 0;
  }

  .tri-login-option-divider::before,
  .tri-login-option-divider::after {
    flex: 1;
    height: 1px;
    background: #dbe1ea;
    content: "";
  }

  .tri-login-option-divider span {
    color: #6b7892;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
  }

  .tri-linkedin-login {
    margin-top: 0;
  }

  .tri-linkedin-login .tri-btn-linkedin-login,
  .tri-linkedin-login a {
    min-height: 54px;
    border-color: rgba(10,102,194,.24);
    border-radius: 10px;
    background: #fff !important;
    color: #0a66c2 !important;
    box-shadow: 0 10px 22px rgba(10,102,194,.08);
    font-weight: 900;
  }

  .tri-linkedin-login .tri-btn-linkedin-login *,
  .tri-linkedin-login a * {
    color: inherit !important;
    opacity: 1 !important;
  }

  .tri-linkedin-login .tri-btn-linkedin-login:hover,
  .tri-linkedin-login a:hover {
    border-color: #0a66c2;
    background: #f5f9ff;
    color: #084f98 !important;
    box-shadow: 0 12px 24px rgba(10,102,194,.12);
  }
}

@media (min-width: 900px) {
  .tri-wrap,
  .tri-wrap *,
  .tri-wrap *::before,
  .tri-wrap *::after {
    box-sizing: border-box;
  }

  .tri-wrap {
    --tri-login-panel-height: clamp(620px, calc(100vh - var(--site-header-h) - 44px), 740px);
    height: var(--tri-login-panel-height);
    margin-top: calc(var(--site-header-h) + 12px);
    margin-bottom: 24px;
  }

  .admin-bar .tri-wrap {
    --tri-login-panel-height: clamp(600px, calc(100vh - var(--site-header-h) - var(--wp-adminbar-h-desktop) - 44px), 720px);
    margin-top: calc(var(--site-header-h) + var(--wp-adminbar-h-desktop) + 12px);
  }

  .tri-auth-layout--split {
    height: 100%;
    min-height: 0;
  }

  .tri-auth-layout--split .tri-auth-section,
  .tri-auth-section-password {
    height: 100%;
    min-height: 0 !important;
  }

  .tri-auth-section-linkedin,
  .tri-auth-section-password {
    overflow: hidden;
  }
}

@media (min-width: 900px) and (max-height: 980px) {
  .tri-wrap {
    --tri-login-panel-height: calc(100vh - var(--site-header-h) - 34px);
    width: min(100% - 36px, 1220px);
    padding: 8px;
    margin-bottom: 12px;
  }

  .admin-bar .tri-wrap {
    --tri-login-panel-height: calc(100vh - var(--site-header-h) - var(--wp-adminbar-h-desktop) - 34px);
  }

  .tri-auth-layout--split {
    grid-template-columns: minmax(390px, .9fr) minmax(460px, 1fr);
    gap: 30px;
  }

  .tri-auth-section-linkedin {
    padding: 28px 36px 22px;
  }

  .tri-auth-panel-brand {
    margin-bottom: 22px;
  }

  .tri-auth-panel-brand img {
    width: min(230px, 68%);
    max-height: 54px;
  }

  .tri-auth-panel-intro h2 {
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 1.08;
  }

  .tri-auth-panel-intro p {
    font-size: 13px;
    line-height: 1.38;
  }

  .tri-feature-list {
    gap: 9px;
    margin-top: 16px;
  }

  .tri-feature {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .tri-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .tri-feature-icon::before,
  .tri-feature-icon::after {
    transform: scale(.78);
    transform-origin: center;
  }

  .tri-feature strong {
    font-size: 12px;
  }

  .tri-feature small {
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.25;
  }

  .tri-register-cta {
    min-height: 160px;
    padding: 20px 22px;
  }

  .tri-register-cta-copy {
    margin-bottom: 14px;
    padding-left: 48px;
  }

  .tri-register-cta-copy strong {
    font-size: 18px;
  }

  .tri-register-cta-copy span {
    max-width: 250px;
    font-size: 12px;
    line-height: 1.35;
  }

  .tri-register-cta .tri-btn-linkedin,
  .tri-register-cta a {
    min-height: 44px;
    font-size: 13px;
  }

  .tri-auth-section-password {
    padding: 26px 42px;
  }

  .tri-login-safe-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 10px;
  }

  .tri-login-safe-icon::before {
    left: 16px;
    top: 12px;
    width: 22px;
    height: 27px;
    border-width: 3px;
  }

  .tri-login-safe-icon::after {
    left: 23px;
    top: 24px;
    width: 11px;
    height: 6px;
    border-width: 0 0 3px 3px;
  }

  .tri-auth-section-password .tri-auth-section-head {
    margin-bottom: 16px;
  }

  .tri-auth-section h2,
  .tri-auth-section h3 {
    font-size: 26px;
  }

  .tri-auth-section-password .tri-auth-section-head p {
    margin-top: 7px;
    font-size: 13px;
  }

  #triPwLogin {
    gap: 8px;
  }

  .tri-auth-section-password .tri-field label {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .tri-auth-section-password .tri-field input[type="email"],
  .tri-auth-section-password .tri-field input[type="password"],
  .tri-auth-section-password .tri-field input[type="text"] {
    min-height: 44px;
    padding: 10px 44px 10px 48px;
    font-size: 13px;
  }

  .tri-auth-section-password .tri-aux-row--end {
    margin-top: -6px;
  }

  .tri-auth-section-password .tri-aux-row,
  .tri-auth-section-password .tri-remember,
  .tri-auth-section-password .tri-forgot,
  .tri-auth-section-password .tri-link {
    font-size: 12px;
  }

  .tri-auth-section-password .tri-btn-primary,
  .tri-auth-section-password .tri-actions .tri-btn-primary,
  .tri-linkedin-login .tri-btn-linkedin-login,
  .tri-linkedin-login a {
    min-height: 44px;
    font-size: 13px;
  }

  .tri-login-option-divider {
    gap: 10px;
    margin: 0;
  }

  .tri-login-option-divider span {
    font-size: 10px;
  }

  #tri-recaptcha {
    min-height: 62px;
    overflow: hidden;
  }

  #tri-recaptcha .g-recaptcha {
    transform: scale(.82);
    transform-origin: left top;
  }

  .tri-secure-note {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    margin-top: 12px;
    padding: 12px 14px;
  }

  .tri-secure-note-icon {
    width: 30px;
    height: 30px;
  }

  .tri-secure-note strong {
    font-size: 12px;
  }

  .tri-secure-note small {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.3;
  }
}

@media (min-width: 900px) {
  .tri-auth-section-linkedin,
  .tri-auth-section-password {
    overflow: visible;
  }
}

@media (min-width: 900px) and (max-height: 980px) {
  .tri-wrap {
    --tri-login-panel-height: min(720px, calc(100vh - var(--site-header-h) - 28px));
  }

  .tri-auth-layout--split .tri-auth-section,
  .tri-auth-section-password {
    min-height: 0 !important;
  }

  .tri-auth-section-linkedin {
    padding: 24px 34px 18px;
  }

  .tri-auth-panel-brand {
    margin-bottom: 18px;
  }

  .tri-auth-panel-brand img {
    width: min(210px, 64%);
    max-height: 48px;
  }

  .tri-auth-panel-intro h2 {
    margin-bottom: 8px;
    font-size: 25px;
  }

  .tri-auth-panel-intro p {
    font-size: 12px;
    line-height: 1.32;
  }

  .tri-feature-list {
    gap: 7px;
    margin-top: 13px;
  }

  .tri-feature {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .tri-feature-icon {
    width: 38px;
    height: 38px;
  }

  .tri-feature strong {
    font-size: 11px;
  }

  .tri-feature small {
    font-size: 10px;
    line-height: 1.2;
  }

  .tri-register-cta {
    min-height: 132px;
    padding: 16px 20px;
  }

  .tri-register-cta-copy {
    margin-bottom: 10px;
    padding-left: 44px;
  }

  .tri-register-cta-copy strong {
    font-size: 17px;
  }

  .tri-register-cta-copy span {
    font-size: 11px;
    line-height: 1.28;
  }

  .tri-register-cta .tri-btn-linkedin,
  .tri-register-cta a {
    min-height: 38px;
    font-size: 12px;
  }

  .tri-auth-section-password {
    padding: 22px 38px;
  }

  .tri-login-safe-icon {
    display: none;
  }

  .tri-auth-section-password .tri-auth-section-head {
    margin-bottom: 12px;
  }

  .tri-auth-section h2,
  .tri-auth-section h3 {
    font-size: 24px;
  }

  .tri-auth-section-password .tri-auth-section-head p {
    margin-top: 5px;
    font-size: 12px;
  }

  #triPwLogin {
    gap: 7px;
  }

  .tri-auth-section-password .tri-field label {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .tri-auth-section-password .tri-field input[type="email"],
  .tri-auth-section-password .tri-field input[type="password"],
  .tri-auth-section-password .tri-field input[type="text"] {
    min-height: 40px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .tri-auth-section-password .tri-btn-primary,
  .tri-auth-section-password .tri-actions .tri-btn-primary,
  .tri-linkedin-login .tri-btn-linkedin-login,
  .tri-linkedin-login a {
    min-height: 40px;
  }

  #tri-recaptcha {
    min-height: 54px;
  }

  #tri-recaptcha .g-recaptcha {
    transform: scale(.74);
  }

  .tri-secure-note {
    margin-top: 8px;
    padding: 10px 12px;
  }
}

@media (min-width: 900px) {
  .tri-feature-icon,
  .tri-login-safe-icon,
  .tri-secure-note-icon,
  .tri-register-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .tri-feature-icon::before,
  .tri-feature-icon::after,
  .tri-login-safe-icon::before,
  .tri-login-safe-icon::after,
  .tri-secure-note-icon::before,
  .tri-register-cta-copy::before,
  .tri-register-cta-copy::after {
    display: none !important;
    content: none !important;
  }

  .tri-feature-icon svg,
  .tri-login-safe-icon svg,
  .tri-secure-note-icon svg,
  .tri-register-cta-icon svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .tri-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.35;
  }

  .tri-feature-learn .tri-feature-icon {
    color: #12356a;
  }

  .tri-feature-career .tri-feature-icon {
    color: #189b5d;
  }

  .tri-feature-connect .tri-feature-icon {
    color: #6a49dc;
  }

  .tri-feature-build .tri-feature-icon {
    color: #f58a1f;
  }

  .tri-register-cta-copy {
    padding-left: 0;
  }

  .tri-register-cta-icon {
    float: left;
    width: 44px;
    height: 44px;
    margin: 2px 16px 8px 0;
    color: #fff;
  }

  .tri-register-cta-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.9;
  }

  .tri-login-safe-icon {
    color: #ff9815;
  }

  .tri-login-safe-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
  }

  .tri-secure-note-icon {
    clip-path: none;
    border-radius: 11px;
    color: #fff;
  }

  .tri-secure-note-icon svg {
    width: 23px;
    height: 23px;
    stroke-width: 2.4;
  }
}

@media (min-width: 900px) and (max-height: 980px) {
  .tri-feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .tri-register-cta-icon {
    width: 36px;
    height: 36px;
    margin-right: 12px;
  }

  .tri-register-cta-icon svg {
    width: 29px;
    height: 29px;
  }

  .tri-login-safe-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
  }

  .tri-login-safe-icon svg {
    width: 24px;
    height: 24px;
  }

  .tri-secure-note-icon svg {
    width: 19px;
    height: 19px;
  }
}

@media (min-width: 900px) {
  .tri-wrap {
    width: min(100% - 56px, 940px);
    max-width: 940px;
  }

  .tri-auth-layout--split {
    grid-template-columns: minmax(0, 420px) minmax(0, 440px);
    justify-content: center;
    gap: 28px;
  }

  .tri-auth-section-linkedin {
    padding-left: 30px;
    padding-right: 30px;
  }

  .tri-auth-section-password {
    padding-left: 34px;
    padding-right: 34px;
  }

  .tri-auth-panel-intro {
    max-width: 330px;
  }

  .tri-feature-list {
    max-width: 330px;
  }

  .tri-register-cta {
    width: min(100%, 310px);
  }
}

@media (min-width: 900px) and (max-height: 980px) {
  .tri-wrap {
    width: min(100% - 36px, 900px);
    max-width: 900px;
  }

  .tri-auth-layout--split {
    grid-template-columns: minmax(0, 400px) minmax(0, 420px);
    gap: 24px;
  }
}
