/* RecruitingGenius hub — split auth (login + register) */

body.page-auth-split {
  font-family: "Inter", system-ui, sans-serif;
  background: #070b10;
  background-image: none;
  color: #f4f7f8;
  min-height: 100vh;
  margin: 0;
}

body.page-auth-split .rg-site-nav {
  display: none !important;
}

body.page-auth-split .login-wrap {
  --bg-0: #070b10;
  --bg-1: #0b1119;
  --panel: #0d141c;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-glow: rgba(45, 212, 191, 0.35);
  --ink-0: #f4f7f8;
  --ink-1: #aab5c0;
  --ink-2: #6b7885;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

body.page-auth-split .login-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 15% 100%, rgba(20, 184, 166, 0.16), transparent 55%),
    radial-gradient(90% 70% at 90% 0%, rgba(45, 212, 191, 0.1), transparent 60%),
    var(--bg-1);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 64px;
}

body.page-auth-split .login-mesh {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    conic-gradient(from 200deg at 30% 30%, rgba(20, 184, 166, 0.35), rgba(9, 14, 20, 0) 35%),
    conic-gradient(from 20deg at 80% 70%, rgba(45, 212, 191, 0.25), rgba(9, 14, 20, 0) 40%);
  filter: blur(60px) saturate(130%);
  animation: login-drift 22s ease-in-out infinite alternate;
  opacity: 0.8;
}

@keyframes login-drift {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  100% { transform: translate(2%, -3%) rotate(8deg) scale(1.08); }
}

body.page-auth-split .login-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

body.page-auth-split .login-stage > * {
  position: relative;
  z-index: 2;
}

body.page-auth-split .login-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

body.page-auth-split .login-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 6px 18px -6px var(--teal-glow);
}

body.page-auth-split .login-brand-name {
  font-family: "Sora", "Clash Display Variable", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}

body.page-auth-split .login-stage-body {
  max-width: 440px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 64px 0;
}

body.page-auth-split .login-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--teal-400);
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.25);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 22px;
}

body.page-auth-split .login-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 8px var(--teal-400);
}

body.page-auth-split .login-stage-title {
  font-family: "Sora", "Clash Display Variable", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

body.page-auth-split .login-stage-title em {
  font-style: normal;
  color: var(--teal-400);
}

body.page-auth-split .login-stage-copy {
  color: var(--ink-1);
  font-size: 15px;
  line-height: 1.65;
  max-width: 390px;
  margin: 0;
}

body.page-auth-split .login-metrics {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

body.page-auth-split .login-metric-num {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-0);
}

body.page-auth-split .login-metric-label {
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 4px;
}

body.page-auth-split .login-float-card {
  position: absolute;
  background: rgba(13, 20, 28, 0.75);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

body.page-auth-split .login-fc-1 {
  top: 12%;
  right: 6%;
  width: 200px;
  animation: login-float1 7s ease-in-out infinite;
}

body.page-auth-split .login-fc-2 {
  bottom: 14%;
  right: 14%;
  width: 172px;
  animation: login-float2 8.5s ease-in-out infinite;
}

@keyframes login-float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes login-float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(9px); }
}

body.page-auth-split .login-fc-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.page-auth-split .login-fc-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal-400), #0a5a52);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #04211d;
}

body.page-auth-split .login-fc-name {
  font-size: 12.5px;
  font-weight: 600;
}

body.page-auth-split .login-fc-role {
  font-size: 11px;
  color: var(--ink-2);
}

body.page-auth-split .login-fc-score-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
  font-size: 11px;
  color: var(--ink-2);
}

body.page-auth-split .login-fc-score {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-400);
}

body.page-auth-split .login-fc-bar {
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 6px;
  overflow: hidden;
}

body.page-auth-split .login-fc-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-400));
  border-radius: 3px;
}

body.page-auth-split .login-form-side {
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

body.page-auth-split .login-form-card {
  width: 100%;
  max-width: 380px;
}

body.page-auth-split .login-form-top-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

body.page-auth-split .login-form-top-link a {
  font-size: 13px;
  color: var(--ink-1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

body.page-auth-split .login-form-top-link a:hover {
  color: var(--ink-0);
}

body.page-auth-split .login-form-top-link strong {
  color: var(--teal-400);
  font-weight: 600;
}

body.page-auth-split .login-back-home {
  color: var(--ink-2);
}

body.page-auth-split .login-back-home svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.85;
}

body.page-auth-split .login-back-home:hover {
  color: var(--teal-400);
}

body.page-auth-split .login-back-home:hover svg {
  opacity: 1;
}

body.page-auth-split .login-form-heading {
  margin-bottom: 34px;
}

body.page-auth-split .login-form-kicker {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

body.page-auth-split .login-form-title {
  font-family: "Sora", "Clash Display Variable", sans-serif;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

body.page-auth-split .login-form-sub {
  color: var(--ink-2);
  font-size: 14px;
  margin: 0;
}

body.page-auth-split .login-field {
  margin-bottom: 18px;
}

body.page-auth-split .login-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-1);
  margin-bottom: 7px;
  text-transform: none;
  letter-spacing: 0;
}

body.page-auth-split .login-input-shell {
  position: relative;
  display: flex;
  align-items: center;
}

body.page-auth-split .login-input-shell svg {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  color: var(--ink-2);
  pointer-events: none;
}

body.page-auth-split .login-input-shell input {
  width: 100%;
  background: #0a0f15;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px 12px 40px;
  font-size: 14px;
  color: var(--ink-0);
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

body.page-auth-split .login-input-shell input::placeholder {
  color: var(--ink-2);
}

body.page-auth-split .login-input-shell input:focus {
  outline: none;
  border-color: var(--teal-500);
  background: #0b131a;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

body.page-auth-split .login-toggle-eye {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  width: 16px;
  height: 16px;
  color: var(--ink-2);
  display: flex;
  padding: 0;
}

body.page-auth-split .login-toggle-eye:hover {
  color: var(--ink-1);
}

body.page-auth-split .login-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 20px;
  font-size: 13px;
}

body.page-auth-split .login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-1);
  font-weight: 500;
  cursor: pointer;
}

body.page-auth-split .login-remember input {
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: #0a0f15;
  cursor: pointer;
  display: grid;
  place-content: center;
  padding: 0;
}

body.page-auth-split .login-remember input:checked {
  background: var(--teal-500);
  border-color: var(--teal-500);
}

body.page-auth-split .login-remember input:checked::after {
  content: "";
  width: 5px;
  height: 8px;
  border: solid #04211d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

body.page-auth-split .login-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 128px;
  padding: 9px 18px;
  background: linear-gradient(145deg, var(--teal-400), var(--teal-500));
  color: #04211d;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 8px 20px -8px var(--teal-glow);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

body.page-auth-split .login-btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -8px var(--teal-glow);
}

body.page-auth-split .login-btn-primary:active {
  transform: translateY(0);
}

body.page-auth-split .login-btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

body.page-auth-split .login-btn-primary svg {
  width: 14px;
  height: 14px;
}

body.page-auth-split .login-form-footer {
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-2);
  margin-top: 28px;
}

body.page-auth-split .login-form-footer a {
  color: var(--teal-400);
  text-decoration: none;
  font-weight: 600;
}

body.page-auth-split .login-form-footer a:hover {
  text-decoration: underline;
}

body.page-auth-split .login-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 11.5px;
  color: var(--ink-2);
}

body.page-auth-split .login-trust-note svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

body.page-auth-split .login-msg {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  display: none;
}

body.page-auth-split .login-msg.error {
  display: block;
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.28);
  color: #fda4af;
}

@media (max-width: 900px) {
  body.page-auth-split .login-wrap {
    grid-template-columns: 1fr;
  }

  body.page-auth-split .login-stage {
    display: none;
  }

  body.page-auth-split .login-form-side {
    padding: 32px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-auth-split .login-mesh,
  body.page-auth-split .login-fc-1,
  body.page-auth-split .login-fc-2 {
    animation: none;
  }
}

/* ---- Register (signup) --------------------------------------------------- */
body.page-auth-split.page-register .login-wrap {
  grid-template-columns: 1fr 1.05fr;
}

body.page-auth-split.page-register .login-stage {
  justify-content: flex-start;
  padding-top: 48px;
  padding-bottom: 48px;
}

body.page-auth-split.page-register .login-stage-body {
  max-width: 430px;
  margin-top: 40px;
  margin-bottom: 0;
  padding: 0;
}

body.page-auth-split.page-register .login-stage-title {
  font-size: 36px;
  line-height: 1.16;
}

body.page-auth-split.page-register .login-form-side {
  overflow-y: auto;
  align-items: stretch;
}

body.page-auth-split.page-register .login-form-card {
  max-width: 420px;
  margin: auto;
  padding: 20px 0;
}

body.page-auth-split.page-register .login-form-top-link {
  margin-bottom: 30px;
}

body.page-auth-split.page-register .login-form-heading {
  margin-bottom: 28px;
}

body.page-auth-split.page-register .login-form-title {
  font-size: 26px;
}

body.page-auth-split.page-register .login-form-sub {
  line-height: 1.5;
}

body.page-auth-split.page-register .login-field {
  margin-bottom: 16px;
}

body.page-auth-split.page-register .login-hint {
  font-size: 11.5px;
  color: var(--ink-2);
  margin-top: 6px;
}

body.page-auth-split.page-register .login-field-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 22px 0 12px;
}

body.page-auth-split.page-register .login-field-label-row label {
  margin-bottom: 0;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-0);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.page-auth-split.page-register .login-field-label-row span {
  font-size: 11.5px;
  color: var(--teal-400);
  font-weight: 500;
}

body.page-auth-split.page-register .login-steps {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-auth-split.page-register .login-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

body.page-auth-split.page-register .login-step-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(45, 212, 191, 0.4);
  background: rgba(45, 212, 191, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

body.page-auth-split.page-register .login-step-mark svg {
  width: 11px;
  height: 11px;
}

body.page-auth-split.page-register .login-step-text {
  font-size: 13.5px;
  color: var(--ink-1);
  line-height: 1.5;
}

body.page-auth-split.page-register .login-step-text strong {
  color: var(--ink-0);
  font-weight: 600;
}

body.page-auth-split.page-register .login-quote {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}

body.page-auth-split.page-register .login-quote-text {
  font-size: 14px;
  color: var(--ink-1);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

body.page-auth-split.page-register .login-quote-who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

body.page-auth-split.page-register .login-quote-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal-400), #0a5a52);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #04211d;
}

body.page-auth-split.page-register .login-quote-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-0);
}

body.page-auth-split.page-register .login-quote-role {
  font-size: 11.5px;
  color: var(--ink-2);
}

body.page-auth-split.page-register .login-plans {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

body.page-auth-split.page-register .login-plan {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(18, 26, 38, 0.96) 0%, rgba(10, 15, 21, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 15px 16px 15px 18px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

body.page-auth-split.page-register .login-plan::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

body.page-auth-split.page-register .login-plan::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 100% 0%, rgba(45, 212, 191, 0.07), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

body.page-auth-split.page-register .login-plan:hover {
  border-color: rgba(45, 212, 191, 0.32);
  background: linear-gradient(145deg, rgba(22, 32, 46, 0.98) 0%, rgba(11, 17, 25, 1) 100%);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -18px rgba(0, 0, 0, 0.55);
}

body.page-auth-split.page-register .login-plan input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
  margin: 0;
  width: auto;
  max-width: none;
  padding: 0;
}

body.page-auth-split.page-register .login-plan-featured:not(.selected) {
  border-color: rgba(45, 212, 191, 0.3);
  background: linear-gradient(145deg, rgba(20, 184, 166, 0.1) 0%, rgba(10, 15, 21, 0.98) 58%);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.12);
}

body.page-auth-split.page-register .login-plan.selected {
  border-color: rgba(45, 212, 191, 0.62);
  background: linear-gradient(
    145deg,
    rgba(20, 184, 166, 0.2) 0%,
    rgba(14, 22, 32, 0.97) 48%,
    rgba(10, 15, 21, 1) 100%
  );
  box-shadow:
    0 0 0 1px rgba(45, 212, 191, 0.5),
    0 0 36px -6px rgba(45, 212, 191, 0.38),
    0 18px 44px -22px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}

body.page-auth-split.page-register .login-plan.selected::before {
  background: linear-gradient(180deg, var(--teal-400), var(--teal-500));
  box-shadow: 0 0 14px var(--teal-glow);
}

body.page-auth-split.page-register .login-plan.selected::after {
  opacity: 1;
}

body.page-auth-split.page-register .login-plan-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

body.page-auth-split.page-register .login-plan-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, background 0.2s ease;
}

body.page-auth-split.page-register .login-plan.selected .login-plan-radio {
  border-color: var(--teal-400);
  background: rgba(45, 212, 191, 0.15);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.18);
}

body.page-auth-split.page-register .login-plan.selected .login-plan-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal-400), var(--teal-500));
  box-shadow: 0 0 8px rgba(45, 212, 191, 0.6);
}

body.page-auth-split.page-register .login-plan-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

body.page-auth-split.page-register .login-plan-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

body.page-auth-split.page-register .login-plan-name {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-0);
  letter-spacing: -0.01em;
}

body.page-auth-split.page-register .login-plan.selected .login-plan-name {
  color: #fff;
}

body.page-auth-split.page-register .login-plan-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.page-auth-split.page-register .login-plan-badge--popular {
  background: linear-gradient(135deg, #5eead4, #14b8a6);
  color: #04211d;
  border: none;
  box-shadow: 0 2px 10px rgba(45, 212, 191, 0.4);
}

body.page-auth-split.page-register .login-plan-badge--flex {
  background: rgba(45, 212, 191, 0.14);
  color: var(--teal-400);
  border: 1px solid rgba(45, 212, 191, 0.45);
}

body.page-auth-split.page-register .login-plan-badge--value {
  background: linear-gradient(135deg, #fde047, #facc15);
  color: #422006;
  border: none;
  box-shadow: 0 2px 10px rgba(250, 204, 21, 0.28);
}

body.page-auth-split.page-register .login-plan-badge:not(.login-plan-badge--popular):not(.login-plan-badge--flex):not(.login-plan-badge--value) {
  background: rgba(45, 212, 191, 0.14);
  color: var(--teal-400);
  border: 1px solid rgba(45, 212, 191, 0.45);
}

body.page-auth-split.page-register .login-plan-desc {
  font-size: 12.5px;
  color: var(--ink-1);
  line-height: 1.5;
  font-weight: 500;
}

body.page-auth-split.page-register .login-plan.selected .login-plan-desc {
  color: rgba(244, 247, 248, 0.9);
}

body.page-auth-split.page-register .login-plan-price {
  text-align: right;
  flex-shrink: 0;
  padding-left: 14px;
  position: relative;
  z-index: 1;
}

body.page-auth-split.page-register .login-plan-amount {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-0);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

body.page-auth-split.page-register .login-plan.selected .login-plan-amount {
  color: var(--teal-400);
  text-shadow: 0 0 28px rgba(45, 212, 191, 0.35);
}

body.page-auth-split.page-register .login-plan-period {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

body.page-auth-split.page-register .login-plan.selected .login-plan-period {
  color: rgba(45, 212, 191, 0.75);
}

body.page-auth-split.page-register .login-terms {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--ink-1);
  line-height: 1.5;
  font-weight: 500;
  cursor: pointer;
}

body.page-auth-split.page-register .login-terms input {
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  margin-top: 1px;
  border: 1px solid var(--line);
  background: #0a0f15;
  cursor: pointer;
  flex-shrink: 0;
  display: grid;
  place-content: center;
  padding: 0;
  width: 15px;
  max-width: none;
}

body.page-auth-split.page-register .login-terms input:checked {
  background: var(--teal-500);
  border-color: var(--teal-500);
}

body.page-auth-split.page-register .login-terms input:checked::after {
  content: "";
  width: 5px;
  height: 8px;
  border: solid #04211d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

body.page-auth-split.page-register .login-terms a {
  color: var(--teal-400);
  text-decoration: none;
  font-weight: 500;
}

body.page-auth-split.page-register .login-terms a:hover {
  text-decoration: underline;
}

body.page-auth-split.page-register .login-form-footer {
  margin-top: 22px;
}

body.page-auth-split.page-register .login-trust-note {
  margin-top: 24px;
}

@media (max-width: 940px) {
  body.page-auth-split.page-register .login-wrap {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-auth-split.page-register .login-plan,
  body.page-auth-split.page-register .login-plan.selected,
  body.page-auth-split.page-register .login-plan:hover {
    transform: none;
  }
}
