:root {
  --auth-bg: #1c4ed8;
  --auth-bg-2: #1c4ed8;
  --auth-surface: rgba(255, 255, 255, 0.94);
  --auth-surface-strong: #ffffff;
  --auth-border: rgba(133, 154, 197, 0.26);
  --auth-ink: #0f172a;
  --auth-muted: #5f6f92;
  --auth-accent: #1c4ed8;
  --auth-accent-2: #1c4ed8;
  --auth-danger: #a11e41;
  --auth-success: #0d8c68;
  --auth-shadow: 0 32px 60px rgba(15, 23, 42, 0.34);
  --auth-control-radius: 6px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--auth-ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(28, 78, 216, 0.18), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(28, 78, 216, 0.2), transparent 28%),
    linear-gradient(140deg, var(--auth-bg) 0%, #1c4ed8 38%, var(--auth-bg-2) 100%);
}

.auth-page {
  min-height: 100vh;
  padding: 24px;
  display: grid;
  align-items: center;
}

.auth-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--auth-shadow);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.auth-shell.auth-shell-compact {
  width: min(980px, 100%);
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 0.88fr);
}

.auth-spotlight {
  position: relative;
  padding: 34px 32px 36px;
  color: #f4f8ff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.auth-spotlight::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 140px;
  height: 140px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(28, 78, 216, 0.24), rgba(255, 255, 255, 0.03));
  transform: rotate(18deg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-brand img {
  width: 116px;
  height: auto;
}

.auth-kicker {
  margin: 56px 0 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
}

.auth-title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 0.96;
}

.auth-copy {
  max-width: 30rem;
  margin: 18px 0 28px;
  color: rgba(239, 245, 255, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.auth-stats,
.auth-points {
  position: relative;
  z-index: 1;
}

.auth-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.auth-stat {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-stat strong {
  display: block;
  font-size: 24px;
}

.auth-stat span {
  display: block;
  margin-top: 6px;
  color: rgba(239, 245, 255, 0.74);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.auth-point {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-point-badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 800;
}

.auth-point strong {
  display: block;
  font-size: 14px;
}

.auth-point span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(239, 245, 255, 0.76);
}

.auth-form-pane {
  background: linear-gradient(180deg, rgba(251, 253, 255, 0.98), rgba(244, 248, 255, 0.98));
  padding: 34px 32px;
}

.auth-form-card {
  background: var(--auth-surface-strong);
  border: 1px solid var(--auth-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.auth-form-card h1 {
  margin: 0 0 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
}

.auth-form-card p {
  margin: 0;
  color: var(--auth-muted);
  font-size: 14px;
  line-height: 1.6;
}

.auth-form {
  margin-top: 24px;
}

.auth-error {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(161, 30, 65, 0.18);
  background: #fff3f6;
  color: var(--auth-danger);
  font-size: 14px;
  font-weight: 600;
}

.auth-success {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(13, 140, 104, 0.18);
  background: #effbf5;
  color: var(--auth-success);
  font-size: 14px;
  font-weight: 600;
}

.auth-section {
  margin-top: 18px;
}

.auth-section:first-of-type {
  margin-top: 0;
}

.auth-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.auth-section-head h2 {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1c4ed8;
}

.auth-section-head span {
  color: var(--auth-muted);
  font-size: 12px;
}

.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.auth-grid.auth-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field.field-full {
  grid-column: 1 / -1;
}

.field label,
.checkbox-card label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d8e1f4;
  border-radius: var(--auth-control-radius);
  padding: 13px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--auth-ink);
  background: #fbfdff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(28, 78, 216, 0.55);
  box-shadow: 0 0 0 4px rgba(28, 78, 216, 0.12);
  transform: translateY(-1px);
}

.field small {
  color: var(--auth-muted);
  font-size: 12px;
  line-height: 1.5;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.choice-row.choice-row-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  display: block;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  display: block;
  min-height: 100%;
  border-radius: var(--auth-control-radius);
  border: 1px solid #d8e1f4;
  background: #fbfdff;
  padding: 14px 14px 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.choice-card strong {
  display: block;
  font-size: 14px;
  color: #334155;
}

.choice-card em {
  display: block;
  margin-top: 6px;
  color: var(--auth-muted);
  font-style: normal;
  font-size: 12px;
  line-height: 1.45;
}

.choice-card input:checked + span {
  border-color: rgba(28, 78, 216, 0.44);
  box-shadow: 0 16px 28px rgba(28, 78, 216, 0.12);
  transform: translateY(-1px);
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
}

.checkbox-card {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid #d8e1f4;
  background: linear-gradient(180deg, #fbfdff, #f5f8ff);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.checkbox-row span {
  color: var(--auth-muted);
  font-size: 13px;
  line-height: 1.55;
}

.checkbox-row a,
.auth-form-meta a {
  color: var(--auth-accent);
  text-decoration: none;
  font-weight: 700;
}

.checkbox-row a:hover,
.auth-form-meta a:hover {
  text-decoration: underline;
}

.auth-submit {
  width: 100%;
  margin-top: 20px;
  border: 0;
  border-radius: var(--auth-control-radius);
  padding: 15px 18px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(130deg, var(--auth-accent), var(--auth-accent-2));
  box-shadow: 0 22px 32px rgba(28, 78, 216, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 36px rgba(28, 78, 216, 0.28);
}

.auth-form-meta {
  margin-top: 14px;
  text-align: center;
  color: var(--auth-muted);
  font-size: 13px;
  line-height: 1.55;
}

.auth-form-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(13, 140, 104, 0.08);
  color: var(--auth-success);
  font-size: 12px;
  font-weight: 700;
}

body.login-page-body,
body.login-page-body button,
body.login-page-body input,
body.login-page-body textarea,
body.login-page-body select {
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

body.login-page-body {
  background: #ffffff;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) {
  overflow: hidden;
}

body.register-page-body,
body.register-page-body button,
body.register-page-body input,
body.register-page-body textarea,
body.register-page-body select,
body.register-checkout-page-body,
body.register-checkout-page-body button,
body.register-checkout-page-body input,
body.register-checkout-page-body textarea,
body.register-checkout-page-body select {
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

body.login-page-body .auth-page-login {
  min-height: 100vh;
  padding: 0;
  display: block;
}

.login-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.login-pane {
  background: #ffffff;
}

.login-pane__inner {
  min-height: 100vh;
  padding: 32px 40px 36px;
  display: grid;
  grid-template-rows: auto 1fr;
}

.login-brand {
  display: inline-flex;
  align-items: center;
}

.login-brand img {
  width: 104px;
  height: auto;
}

.login-pane__content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 28px;
}

.login-form-wrap {
  width: min(100%, 452px);
  margin: 0 auto;
}

.login-copy {
  text-align: center;
}

.login-copy h1 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(1.62rem, 1.72vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #0f172a;
}

.login-copy p {
  margin: 14px 0 0;
  color: #0f172a;
  font-size: clamp(0.94rem, 0.88vw, 1rem);
  line-height: 1.45;
}

.login-form {
  width: 100%;
  margin-top: 44px;
}

.login-form .auth-section {
  display: grid;
  gap: 18px;
  margin-top: 0;
}

.login-form .field {
  gap: 8px;
}

.login-form .field label {
  font-size: 13px;
  font-weight: 500;
  color: #334155;
}

.login-form .field input {
  border: 1px solid #d6d9e0;
  border-radius: var(--auth-control-radius);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: #4b5565;
  background: #ffffff;
  box-shadow: none;
}

.login-form .field input::placeholder {
  color: #6e7b91;
}

.login-form .field input:focus {
  outline: none;
  border-color: rgba(28, 78, 216, 0.5);
  box-shadow: 0 0 0 4px rgba(28, 78, 216, 0.12);
  transform: none;
}

.login-submit {
  margin-top: 34px;
  border: 0;
  border-radius: var(--auth-control-radius);
  padding: 13px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, #1c4ed8 0%, #1c4ed8 100%);
  box-shadow: none;
  opacity: 1;
}

.login-submit:hover {
  transform: none;
  box-shadow: none;
  filter: brightness(1.02);
}

.login-links {
  margin-top: 20px;
  display: grid;
  gap: 18px;
  text-align: center;
}

.login-links.login-links-compact {
  margin-top: 18px;
  gap: 12px;
}

.login-forgot,
.login-register a {
  color: var(--auth-accent);
  text-decoration: none;
  font-weight: 700;
}

.login-forgot {
  font-size: 14px;
}

.login-forgot:hover,
.login-register a:hover {
  text-decoration: underline;
}

.login-register {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

.login-secondary-form {
  margin: 0;
}

.login-secondary-btn {
  width: 100%;
  border: 1px solid #d6d9e0;
  border-radius: var(--auth-control-radius);
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  background: #ffffff;
}

.login-secondary-btn:hover {
  background: #f8fafc;
}

.login-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: #ffffff;
  background: linear-gradient(135deg, #1c4ed8 0%, #1c4ed8 100%);
}

.login-showcase__inner {
  width: min(100%, 470px);
  margin: 0 auto;
  text-align: center;
}

.login-showcase h2 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(1.92rem, 2.08vw, 2.52rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.14;
  color: #ffffff;
}

.login-showcase__copy {
  max-width: 452px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16.4px;
  font-weight: 500;
  line-height: 1.58;
  text-wrap: balance;
}

.login-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 42px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(16px);
}

.login-rating__avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.login-rating__avatar {
  position: relative;
  width: 50px;
  height: 50px;
  margin-left: -14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.92);
  object-fit: cover;
  background: rgba(28, 78, 216, 0.12);
}

.login-rating__avatar:first-child {
  margin-left: 0;
}

.login-rating__avatar:nth-child(1) {
  z-index: 3;
}

.login-rating__avatar:nth-child(2) {
  z-index: 2;
}

.login-rating__avatar:nth-child(3) {
  z-index: 1;
}

.login-rating__text {
  display: grid;
  gap: 6px;
  width: 184px;
  text-align: left;
}

.login-rating__top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
}

.login-stars {
  display: flex;
  align-items: center;
  gap: 7px;
}

.login-stars span,
.login-stars svg {
  display: block;
  color: #ffffff;
  line-height: 1;
}

.login-star-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.login-rating__score {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.login-rating__line {
  margin: 0;
  color: #ffffff;
  font-size: 13.6px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.register-pane__content {
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 56px;
}

.register-form-wrap {
  width: min(100%, 560px);
}

.register-copy {
  width: 100%;
  text-align: center;
}

.register-copy h1 {
  font-weight: 600;
}

.register-form {
  margin-top: 18px;
}

.register-form .register-step {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.register-form .register-step[hidden] {
  display: none;
}

.register-step__head {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.register-step__head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.register-step__head p {
  margin: 0;
  max-width: 330px;
  color: #667085;
  font-size: 14px;
  line-height: 1.5;
}

.register-form .auth-grid {
  gap: 14px;
}

.register-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.register-form .field {
  gap: 8px;
}

.register-form .field label {
  font-weight: 500;
  color: #334155;
}

.register-form .field input {
  border: 1px solid #d6d9e0;
  border-radius: var(--auth-control-radius);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: #4b5565;
  background: #ffffff;
  box-shadow: none;
}

.register-form .field input::placeholder {
  color: #6e7b91;
}

.register-form .field input:focus {
  transform: none;
}

.register-grid--two .field.field-full {
  grid-column: 1 / -1;
}

.register-promo {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.register-promo-field {
  width: min(100%, 320px);
}

.register-promo-feedback {
  width: min(100%, 480px);
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(28, 78, 216, 0.16);
  border-radius: var(--auth-control-radius);
  background: #f8fbff;
  color: #1c4ed8;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.register-promo-feedback.is-invalid {
  border-color: rgba(183, 60, 44, 0.18);
  background: #fff7f5;
  color: #b73c2c;
}

.register-form .choice-row {
  gap: 10px;
}

.register-form .choice-card span {
  border-color: #d6d9e0;
  border-radius: 12px;
  padding: 12px 14px;
  background: #ffffff;
}

.register-form .choice-card strong {
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
}

.register-form .choice-card em {
  display: none;
}

.register-form .choice-card input:checked + span {
  border-color: rgba(28, 78, 216, 0.45);
  box-shadow: 0 0 0 4px rgba(28, 78, 216, 0.12);
  transform: none;
  background: #f8fbff;
}

.register-actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.register-action {
  appearance: none;
  border: 1px solid #d6d9e0;
  border-radius: var(--auth-control-radius);
  padding: 13px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.register-action--back {
  flex: 0 0 132px;
  color: #334155;
  background: #ffffff;
}

.register-action--back:hover {
  border-color: #bcc5d4;
  background: #f8fafc;
}

.register-action--next {
  flex: 1;
  border: 0;
  color: #ffffff;
  background: linear-gradient(90deg, #1c4ed8 0%, #1c4ed8 100%);
}

.register-action--next:hover {
  filter: brightness(1.02);
}

.register-submit {
  flex: 1;
  margin-top: 0;
}

.auth-legal,
.register-legal {
  max-width: 430px;
  margin: 2px auto 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
  text-wrap: balance;
}

.auth-legal a,
.register-legal a {
  color: inherit;
  text-decoration: none;
}

.auth-legal a:hover,
.register-legal a:hover {
  text-decoration: underline;
}

.register-form-meta {
  margin-top: 18px;
}

.register-checkout-page-body {
  background: #f4f6fb;
}

.register-checkout-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
}

.register-checkout-pane {
  background:
    radial-gradient(circle at top left, rgba(28, 78, 216, 0.08), transparent 32%),
    #f8fbff;
}

.register-checkout-pane__inner {
  padding-bottom: 0;
}

.register-checkout-pane__content {
  align-items: flex-start;
  padding-top: 36px;
  padding-bottom: 56px;
}

.register-checkout-wrap {
  width: min(100%, 560px);
  margin: 0 auto;
}

.register-checkout-copy {
  text-align: left;
}

.register-checkout-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(2rem, 2.2vw, 2.8rem);
}

.register-checkout-copy p {
  margin: 14px 0 0;
  color: #4b5565;
  line-height: 1.6;
}

.register-checkout-backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1c4ed8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.register-checkout-backlink:hover {
  text-decoration: underline;
}

.register-checkout-card {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #dde5f4;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.06);
}

.register-checkout-card--embedded {
  overflow: hidden;
}

.register-checkout-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.register-checkout-card__head h2 {
  margin: 0;
  font-size: 1.3rem;
  color: #0f172a;
}

.register-checkout-card__head p {
  margin: 8px 0 0;
  color: #5b6780;
  line-height: 1.55;
}

.register-checkout-badge {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(28, 78, 216, 0.08);
  color: #1c4ed8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.register-checkout-element-shell {
  padding: 4px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(28, 78, 216, 0.08), rgba(28, 78, 216, 0.04));
}

.register-checkout-status {
  margin: 18px 0 0;
  color: #5b6780;
  font-size: 13px;
  line-height: 1.6;
}

.register-checkout-status {
  min-height: 20px;
  color: #1c4ed8;
  font-weight: 600;
}

.register-checkout-element-shell--embedded {
  margin-top: 8px;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5ebf5;
}

.register-embedded-checkout {
  min-height: 720px;
  background: #ffffff;
}

.register-checkout-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, #1c4ed8 0%, #1c4ed8 52%, #1c4ed8 100%);
  color: #ffffff;
}

.register-checkout-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%);
}

.register-checkout-showcase__inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.register-checkout-summary {
  width: min(100%, 560px);
}

.register-checkout-summary--minimal {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
}

.register-checkout-summary__meta {
  margin-bottom: 34px;
}

.register-checkout-summary__meta strong,
.register-checkout-summary__meta span {
  display: block;
}

.register-checkout-summary__meta strong {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
}

.register-checkout-summary__meta span {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.register-checkout-summary__top,
.register-checkout-summary__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.register-checkout-summary__top span,
.register-checkout-summary__row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
}

.register-checkout-summary__top strong,
.register-checkout-summary__row strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.register-checkout-price {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.register-checkout-summary__rows {
  display: grid;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 22px;
}

.register-checkout-summary__rows--minimal {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.register-checkout-summary__totals {
  padding-top: 22px;
}

.register-checkout-summary__footnote {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
}

.register-checkout-summary__row--total {
  align-items: center;
}

.register-checkout-summary__total-side {
  text-align: right;
}

.register-checkout-summary__row--total strong {
  font-size: 17px;
}

.register-checkout-summary__total-side em {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  font-size: 14.5px;
}

.register-checkout-trust {
  width: min(100%, 520px);
  display: grid;
  gap: 14px;
}

.register-checkout-trust__item {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.register-checkout-trust__item strong {
  display: block;
  font-size: 14px;
}

.register-checkout-trust__item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .auth-shell,
  .auth-shell.auth-shell-compact {
    grid-template-columns: 1fr;
  }

  .auth-spotlight {
    padding-bottom: 28px;
  }

  .auth-kicker {
    margin-top: 32px;
  }
}

@media (max-width: 900px) {
  .login-layout {
    grid-template-columns: 1fr;
  }

  .login-showcase {
    display: none;
  }

  .login-pane__content {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .register-pane__content {
    align-items: center;
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .register-checkout-pane__content {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 20px;
    padding-bottom: 48px;
  }
}

@media (max-width: 760px) {
  .auth-page {
    padding: 14px;
  }

  .auth-spotlight,
  .auth-form-pane,
  .auth-form-card {
    padding: 22px 20px;
  }

  .auth-grid,
  .auth-grid.auth-grid-3,
  .choice-row,
  .choice-row.choice-row-2,
  .auth-stats {
    grid-template-columns: 1fr;
  }

  .auth-title {
    font-size: 36px;
  }

  .login-pane__inner {
    padding: 32px 20px 36px;
  }

  .login-brand img {
    width: 102px;
  }

  .login-pane__content {
    padding-top: 70px;
  }

  .register-pane__content {
    padding-top: 12px;
  }

  .login-form-wrap {
    width: min(100%, 452px);
  }

  .register-form-wrap {
    width: 100%;
  }

  .login-copy h1 {
    font-size: 1.95rem;
  }

  .login-copy p {
    font-size: 14px;
  }

  .login-copy {
    text-align: center;
  }

  .login-form {
    margin-top: 44px;
  }

  .login-form .field input {
    padding: 12px 14px;
    font-size: 14px;
  }

  .login-submit {
    margin-top: 34px;
  }

  .login-links {
    gap: 18px;
  }

  .login-forgot,
  .login-register {
    font-size: 14px;
  }

  .login-rating__text {
    width: 184px;
  }

  .register-grid--two,
  .register-actions,
  .register-checkout-actions {
    grid-template-columns: 1fr;
  }

  .register-actions,
  .register-checkout-actions {
    display: grid;
  }

  .register-action--back,
  .register-submit {
    width: 100%;
    flex: 1 1 auto;
  }

  .register-checkout-card {
    padding: 20px;
  }

  .register-checkout-card__head {
    display: grid;
  }

  .register-checkout-copy h1 {
    font-size: 2rem;
  }
}

/* ─── Register billing step ─────────────────────────────────────────────── */

.register-billing-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.register-billing-back {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid #d6d9e0;
  border-radius: var(--auth-control-radius);
  background: #ffffff;
  color: #334155;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.register-billing-back:hover {
  border-color: #bcc5d4;
  background: #f8fafc;
}

.register-billing-title {
  margin: 0;
  font-size: clamp(1.62rem, 1.72vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #0f172a;
  line-height: 1.12;
}

.register-billing-fields {
  display: grid;
  gap: 16px;
}

.register-address-sub {
  display: grid;
  gap: 14px;
}

.register-address-sub[hidden] {
  display: none;
}

.field-optional {
  font-weight: 400;
  color: #8a96aa;
  font-size: 12px;
}

.register-promo-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.register-promo-row input {
  flex: 1;
  min-width: 0;
}

.register-promo-apply {
  appearance: none;
  flex-shrink: 0;
  padding: 0 16px;
  border: 1px solid #d6d9e0;
  border-radius: 8px;
  background: #ffffff;
  color: #334155;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.register-promo-apply:hover {
  border-color: #bcc5d4;
  background: #f8fafc;
}

.register-actions--full {
  margin-top: 8px;
}

.register-actions--full .register-submit {
  flex: 1;
}

/* ─── Register right-side content ──────────────────────────────────────── */

.register-right-aside {
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-right-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-right-step2 {
  padding: 40px;
}

.register-billing-summary-wrap {
  width: min(100%, 480px);
  margin: 0 auto;
}

/* pac-container = Google Places dropdown — keep above everything */
.pac-container {
  z-index: 9999;
  border-radius: var(--auth-control-radius);
  border: 1px solid #d6d9e0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 14px;
  overflow: hidden;
}

.pac-item {
  padding: 10px 14px;
  cursor: pointer;
  color: #334155;
}

.pac-item:hover,
.pac-item-selected {
  background: #f0f5ff;
}

.pac-icon {
  display: none;
}

.pac-item-query {
  color: #0f172a;
  font-weight: 600;
}

/* ─── Checkout page — simplified ────────────────────────────────────────── */

.register-checkout-copy h1 {
  font-size: clamp(1.8rem, 2vw, 2.6rem);
}

.register-checkout-copy p {
  display: none;
}

/* ─── Register + checkout redesign ─────────────────────────────────────── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.register-page-body,
body.register-checkout-page-body {
  background: #ffffff;
}

body.register-page-body .auth-page-login,
body.register-checkout-page-body .auth-page-login,
body.register-page-body .login-pane,
body.register-page-body .register-pane__inner {
  background: #ffffff;
}

body.register-checkout-page-body .register-checkout-pane,
body.register-checkout-page-body .register-checkout-pane__inner {
  background: #ffffff;
}

body.register-page-body,
body.register-page-body button,
body.register-page-body input,
body.register-page-body textarea,
body.register-page-body select {
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .auth-page-login,
body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-layout,
body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-pane__inner {
  height: 100vh;
  min-height: 100vh;
}

body.register-page-body {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body.register-page-body .auth-page-login,
body.register-page-body .login-layout,
body.register-page-body .login-pane__inner {
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
}

body.register-page-body .register-pane__content {
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 28px;
}

body.register-page-body .register-form-wrap {
  width: min(100%, 452px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.register-page-body .register-main-stack {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.register-page-body .register-copy,
body.register-page-body .register-form,
body.register-page-body .register-actions,
body.register-page-body .register-actions--full,
body.register-page-body .register-footer,
body.register-page-body .register-billing-head,
body.register-page-body .register-billing-fields {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

body.register-page-body.register-step-2-active .register-main-stack {
  justify-content: center;
}

body.register-page-body .register-copy {
  text-align: center;
}

body.register-page-body .register-copy h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.62rem, 1.72vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

body.register-page-body .register-step-indicator {
  margin: 0 0 8px;
  color: #64748b;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

body.register-page-body .register-form {
  margin-top: 36px;
}

body.register-page-body .register-form .register-step {
  gap: 16px;
}

body.register-page-body .register-form .register-step--billing {
  padding-top: 0;
}

body.register-page-body .register-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.register-page-body .register-form .field label,
body.register-page-body .register-billing-fields .field label,
body.register-page-body .register-promo label {
  color: #334155;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

body.register-page-body .register-form .field input,
body.register-page-body .register-form .field select,
body.register-page-body .register-billing-fields .field input,
body.register-page-body .register-billing-fields .field select,
body.register-page-body .register-promo-row input {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid #d6d9e0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
  color: #4b5565;
  font-size: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.register-page-body .register-form .field input::placeholder,
body.register-page-body .register-billing-fields .field input::placeholder,
body.register-page-body .register-promo-row input::placeholder {
  color: #6e7b91;
}

body.register-page-body .register-form .field input:focus,
body.register-page-body .register-form .field select:focus,
body.register-page-body .register-billing-fields .field input:focus,
body.register-page-body .register-billing-fields .field select:focus,
body.register-page-body .register-promo-row input:focus {
  outline: none;
  border-color: #1c4ed8;
  box-shadow: 0 0 0 3px rgba(28, 78, 216, 0.15);
  transform: none;
}

body.register-page-body .field.has-error label {
  color: #dc2626;
}

body.register-page-body .field.has-error input,
body.register-page-body .field.has-error select,
body.register-page-body .field.has-error textarea {
  border-color: #f87171;
  box-shadow:
    0 0 0 3px rgba(239, 68, 68, 0.1),
    0 4px 12px rgba(15, 23, 42, 0.05);
}

body.register-page-body .field-error {
  margin: 8px 0 0;
  color: #dc2626;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

body.register-page-body .field-hint {
  margin: 2px 0 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

body.register-page-body .phone-input-shell {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 44px;
  border: 1px solid #d6d9e0;
  border-radius: var(--auth-control-radius);
  background: #ffffff;
  box-shadow: none;
  overflow: visible;
}

body.register-page-body .phone-input-shell:focus-within {
  border-color: rgba(28, 78, 216, 0.5);
  box-shadow: 0 0 0 4px rgba(28, 78, 216, 0.12);
}

body.register-page-body .phone-input-shell select,
body.register-page-body .phone-input-shell input {
  min-height: 44px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

body.register-page-body .phone-input-shell select {
  width: 1px;
  height: 1px;
  padding: 0;
  opacity: 0;
  position: absolute;
  inset: auto;
  pointer-events: none;
}

body.register-page-body .phone-flag-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 12px;
  border: 0;
  border-right: 1px solid #d6d9e0;
  cursor: pointer;
  user-select: none;
  background: #ffffff;
  min-width: 0;
  appearance: none;
  border-top-left-radius: var(--auth-control-radius);
  border-bottom-left-radius: var(--auth-control-radius);
}

body.register-page-body .phone-flag-img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  display: block;
}

body.register-page-body .phone-input-shell input {
  flex: 1 1 0%;
  min-width: 0;
  width: auto;
  height: 100%;
  padding: 0 14px;
  margin: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

body.register-page-body .register-form .field-phone .phone-input-shell select,
body.register-page-body .register-billing-fields .field-phone .phone-input-shell select {
  width: 72px;
}

body.register-page-body .register-form .field-phone .phone-input-shell input,
body.register-page-body .register-billing-fields .field-phone .phone-input-shell input {
  flex: 1 1 0%;
  min-width: 0;
  width: auto;
  padding: 0 14px;
  margin: 0;
  border: 0;
  border-radius: 0 var(--auth-control-radius) var(--auth-control-radius) 0;
  background: transparent;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

body.register-page-body .register-form .field-phone .phone-input-shell input:focus,
body.register-page-body .register-billing-fields .field-phone .phone-input-shell input:focus {
  border: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
}

body.register-page-body .field-phone.has-error .phone-input-shell {
  border-color: #f87171;
  box-shadow:
    0 0 0 3px rgba(239, 68, 68, 0.1),
    0 4px 12px rgba(15, 23, 42, 0.05);
}

body.register-page-body .field-phone.has-error .phone-input-shell input,
body.register-page-body .field-phone.has-error .phone-input-shell select {
  border: 0;
  box-shadow: none;
}

body.register-page-body .phone-country-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(360px, calc(100vw - 40px));
  max-height: 280px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid #dbe3ee;
  border-radius: var(--auth-control-radius);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
  z-index: 30;
}

body.register-page-body .phone-country-option {
  width: 100%;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 0;
  border-radius: var(--auth-control-radius);
  background: transparent;
  color: #111827;
  text-align: left;
  cursor: pointer;
}

body.register-page-body .phone-country-option:hover,
body.register-page-body .phone-country-option:focus-visible,
body.register-page-body .phone-country-option.is-selected {
  background: rgba(28, 78, 216, 0.06);
  outline: none;
}

body.register-page-body .phone-country-option-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

body.register-page-body .phone-country-option-code {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.register-page-body .phone-country-option-dial {
  flex-shrink: 0;
  padding-left: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

body.register-page-body .register-promo-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

body.register-page-body .register-promo-apply,
body.register-page-body .register-action,
body.register-page-body .register-submit {
  min-height: 44px;
  border-radius: var(--auth-control-radius);
  font-size: 14px;
  font-weight: 700;
}

body.register-page-body .register-promo-apply {
  width: auto;
  flex: 0 0 auto;
  min-width: 136px;
  border: 1px solid #d6d9e0;
  background: #ffffff;
  box-shadow: none;
}

body.register-page-body .register-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

body.register-page-body .register-action--next,
body.register-page-body .register-submit {
  width: 100%;
  margin-top: 0;
  border: 0;
  color: #ffffff;
  background: linear-gradient(90deg, #1c4ed8 0%, #1c4ed8 100%);
  box-shadow: 0 4px 14px rgba(28, 78, 216, 0.35);
  transition: filter 0.15s ease, box-shadow 0.15s ease;
}

body.register-page-body .register-action--next {
  font-size: 14px;
}

body.register-page-body .register-trust-lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}

body.register-page-body .register-trust-lines > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  color: #166534;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

body.register-page-body .register-trust-lines > span > span {
  color: #16a34a;
  font-weight: 800;
  font-size: 13px;
}

body.register-page-body .register-action--next:hover,
body.register-page-body .register-submit:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 20px rgba(28, 78, 216, 0.45);
}

body.register-page-body .auth-legal,
body.register-page-body .register-legal {
  margin-top: 16px;
  color: #475569;
  text-align: center;
  font-size: 13px;
}

body.register-page-body .register-form-meta {
  margin-top: 22px;
  color: #111827;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

body.register-page-body .register-form-meta a {
  color: #1c4ed8;
  font-weight: 600;
}

body.register-page-body .register-billing-head {
  width: 100%;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 20px;
}

body.register-page-body .register-step-indicator--billing {
  width: 100%;
  margin-bottom: -6px;
  text-align: left;
}

body.register-page-body .register-billing-back,
body.register-checkout-page-body .register-checkout-backlink {
  color: #0f172a;
}

body.register-page-body .register-billing-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-self: center;
}

body.register-page-body .register-billing-back svg,
body.register-checkout-page-body .register-back-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

body.register-page-body .register-billing-back svg {
  width: 18px;
  height: 18px;
  transform: translateY(1px);
}

body.register-page-body .register-billing-title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.62rem, 1.72vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

body.login-page-body .login-submit {
  color: #ffffff;
  background: linear-gradient(90deg, #1c4ed8 0%, #1c4ed8 100%);
}

body.register-page-body .register-billing-fields {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  gap: 14px;
}

body.register-page-body .register-address-sub {
  gap: 16px;
}

body.register-page-body .register-right-aside {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1c4ed8 0%, #1c4ed8 100%);
  border-left: 0;
}

body.register-page-body .register-right-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

body.register-page-body .register-right-content[hidden] {
  display: none;
}

body.register-page-body .login-showcase__inner {
  width: min(100%, 470px);
  margin: 0 auto;
  text-align: center;
}

body.register-page-body .register-billing-summary-wrap {
  width: min(100%, 470px);
  margin: 0 auto;
}

body.register-page-body .login-showcase h2 {
  max-width: none;
  font-size: clamp(1.92rem, 2.08vw, 2.52rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.14;
  color: #ffffff;
}

body.register-page-body .login-showcase__copy {
  max-width: 452px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16.4px;
  font-weight: 500;
  line-height: 1.58;
}

body.register-page-body .login-stars span,
body.register-page-body .login-stars svg {
  color: #ffffff;
}

body.register-page-body .login-rating__score {
  color: #ffffff;
}

body.register-page-body .login-rating__line {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13.6px;
  font-weight: 500;
}

body.register-page-body .login-rating {
  margin-top: 42px;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(16px);
}

body.register-page-body .login-rating__avatar {
  border-color: #ffffff;
  box-shadow: none;
}

body.register-page-body .register-testimonial {
  width: min(100%, 420px);
  margin: 24px auto 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  border-left: 3px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

body.register-page-body .register-testimonial br + span,
body.register-page-body .register-testimonial .register-testimonial__author {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 12px;
  opacity: 0.8;
}

body.register-page-body .register-right-step2 {
  padding: 0;
}

body.register-page-body .register-checkout-summary__rows {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

body.register-page-body .register-checkout-summary__row span,
body.register-page-body .register-checkout-summary__total-side em {
  color: rgba(255, 255, 255, 0.78);
}

body.register-page-body .register-checkout-summary__row strong,
body.register-page-body .register-checkout-summary__row--total strong {
  color: #ffffff;
}

body.register-page-body .register-checkout-summary__trial-notice {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 18px 0 0;
  padding: 12px 16px;
  border: 1px solid #86efac;
  border-radius: 8px;
  background: #f0fdf4;
  color: #15803d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

body.register-page-body .register-checkout-summary__trial-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  margin-top: 1px;
}

body.register-page-body .register-footer {
  margin-top: 18px;
}

body.register-page-body .register-footer[hidden] {
  display: none;
}

body.register-page-body .register-footer--step1 {
  margin-top: 18px;
}

body.register-page-body .register-footer--step2 {
  margin-top: 28px;
}

body.register-page-body .auth-legal,
body.register-page-body .register-legal {
  margin: 0;
}

body.register-page-body .register-form-meta {
  width: 100%;
  margin-top: 14px;
}

body.register-checkout-page-body .register-checkout-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  background: #ffffff;
}

body.register-checkout-page-body .register-checkout-pane {
  background: #ffffff;
}

body.register-checkout-page-body .register-checkout-pane__content {
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

body.register-checkout-page-body .register-checkout-wrap {
  width: min(100%, 430px);
  margin: 0 auto;
}

body.register-checkout-page-body .register-checkout-copy {
  text-align: left;
}

body.register-checkout-page-body .register-checkout-backlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

body.register-checkout-page-body .register-checkout-cancel-note {
  margin: 4px 0 14px;
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

body.register-checkout-page-body .register-back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.register-checkout-page-body .register-checkout-copy h1 {
  margin: 18px 0 0;
  color: #0f172a;
  font-size: clamp(2.1rem, 2.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

body.register-checkout-page-body .register-checkout-status,
body.register-checkout-page-body .register-legal {
  width: min(100%, 430px);
  text-align: left;
}

body.register-checkout-page-body .register-legal {
  margin-top: 20px;
  color: #475569;
}

body.register-checkout-page-body .register-checkout-element-shell--embedded {
  margin-top: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

body.register-checkout-page-body .register-embedded-checkout {
  min-height: min(650px, calc(100vh - 120px));
}

body.register-checkout-page-body .register-checkout-showcase {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(145deg, #1c4ed8 0%, #1c4ed8 58%, #1c4ed8 100%);
}

body.register-checkout-page-body .register-checkout-showcase__inner {
  justify-content: flex-start;
  padding: 48px 56px;
}

body.register-checkout-page-body .register-checkout-summary {
  width: min(100%, 420px);
}

body.register-checkout-page-body .register-checkout-summary__row span,
body.register-checkout-page-body .register-checkout-summary__total-side em {
  color: rgba(255, 255, 255, 0.78);
}

body.register-checkout-page-body .register-checkout-summary__row strong,
body.register-checkout-page-body .register-checkout-summary__row--total strong {
  color: #ffffff;
}

.pac-container {
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

@media (min-width: 901px) {
  body.register-checkout-page-body {
    overflow: hidden;
  }

  body.register-checkout-page-body .auth-page-login,
  body.register-checkout-page-body .register-checkout-layout,
  body.register-checkout-page-body .register-checkout-pane__inner,
  body.register-checkout-page-body .register-checkout-showcase__inner {
    height: 100vh;
    min-height: 100vh;
  }

  body.register-checkout-page-body .register-checkout-pane__inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  body.register-checkout-page-body .register-checkout-element-shell--embedded {
    max-height: calc(100vh - 144px);
    overflow: hidden;
  }

  body.register-checkout-page-body .register-embedded-checkout {
    height: clamp(500px, calc(100vh - 160px), 650px);
    min-height: 0;
    overflow: auto;
  }
}

@media (max-width: 900px) {
  body.register-checkout-page-body {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.register-checkout-page-body .auth-page-login,
  body.register-checkout-page-body .register-checkout-layout,
  body.register-checkout-page-body .register-checkout-pane__inner {
    width: 100%;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.register-checkout-page-body .register-checkout-layout {
    display: block;
    grid-template-columns: 1fr;
  }

  body.register-checkout-page-body .register-checkout-pane {
    width: 100%;
    min-width: 0;
  }

  body.register-checkout-page-body .register-checkout-pane__inner {
    display: block;
    padding: 28px 18px 36px;
  }

  body.register-page-body .register-pane__content,
  body.register-checkout-page-body .register-checkout-pane__content {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 28px;
    padding-bottom: 40px;
  }

  body.register-page-body .register-right-aside,
  body.register-checkout-page-body .register-checkout-showcase {
    display: none;
  }

  body.register-page-body .register-form-wrap {
    min-height: 0;
  }

  body.register-checkout-page-body .register-checkout-brand {
    display: inline-flex;
    margin-bottom: 26px;
  }

  body.register-checkout-page-body .register-checkout-wrap,
  body.register-checkout-page-body .register-checkout-status,
  body.register-checkout-page-body .register-legal {
    width: 100%;
    max-width: none;
  }

  body.register-checkout-page-body .register-checkout-copy {
    width: 100%;
  }

  body.register-checkout-page-body .register-checkout-backlink {
    margin-bottom: 14px;
  }

  body.register-checkout-page-body .register-checkout-element-shell--embedded {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  }

  body.register-checkout-page-body .register-embedded-checkout {
    width: 100%;
    min-width: 0;
    min-height: 760px;
  }
}

@media (max-width: 760px) {
  body.register-page-body .register-grid--two {
    grid-template-columns: 1fr;
  }

  body.register-page-body .register-copy,
  body.register-page-body .register-form,
  body.register-page-body .register-actions,
  body.register-page-body .register-actions--full,
  body.register-page-body .register-footer,
  body.register-page-body .register-billing-head,
  body.register-page-body .register-billing-fields,
  body.register-checkout-page-body .register-checkout-wrap,
  body.register-checkout-page-body .register-checkout-status,
  body.register-checkout-page-body .register-legal {
    width: 100%;
    max-width: none;
  }

  body.register-page-body .register-copy h1,
  body.register-page-body .register-billing-title,
  body.register-checkout-page-body .register-checkout-copy h1 {
    font-size: 2rem;
  }

  body.register-page-body .phone-input-shell {
    display: flex;
  }

  body.register-page-body .register-form-wrap {
    min-height: 0;
  }

  body.register-page-body .register-trust-lines {
    flex-direction: column;
    align-items: flex-start;
  }

  body.register-page-body .register-trust-lines > span {
    white-space: normal;
  }

  body.register-checkout-page-body .register-checkout-backlink {
    font-size: 16px;
  }
}

/* ─── Plan selection step (Schritt 2) ───────────────────────────────────── */

body.register-plan-step-active .register-right-aside {
  display: none;
}

body.register-plan-step-active .login-pane {
  grid-column: 1 / -1;
}

body.register-plan-step-active .register-form-wrap {
  width: min(100%, 860px);
}

body.register-plan-step-active .register-pane__content {
  padding-top: 16px;
}

.rp-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 18px;
}

.rp-trust-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #475569;
  font-size: 12.5px;
  font-weight: 600;
}

.rp-trust-check::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #dcfce7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8.5l3.5 3.5L13 5' stroke='%2316a34a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.rp-billing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  border-radius: 999px;
  border: 1px solid #d6d9e0;
  background: #f8fafc;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 24px;
}

.rp-billing-option {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 7px 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #5f6b7c;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.rp-billing-option.is-active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 1px 5px rgba(15, 23, 42, 0.1);
}

.rp-discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.rp-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rp-plan-card {
  position: relative;
  padding: 20px 18px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.rp-plan-card:hover {
  border-color: #c7d4ef;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}

.rp-plan-card--featured {
  border-color: #1c4ed8;
  border-width: 2px;
  background: linear-gradient(180deg, rgba(28, 78, 216, 0.06), #ffffff);
}

.rp-plan-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 999px;
  background: #1c4ed8;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.rp-plan-name {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.rp-plan-sub {
  margin: 0;
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

.rp-plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 8px 0 0;
}

.rp-plan-amount {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0f172a;
  line-height: 1;
}

.rp-plan-amount--text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rp-plan-currency {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  align-self: flex-start;
  margin-top: 5px;
  margin-left: 1px;
}

.rp-plan-interval {
  margin: 0 0 10px;
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
  min-height: 1.4em;
}

.rp-plan-cta {
  margin-top: auto;
  appearance: none;
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 0;
  border-radius: var(--auth-control-radius);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.18s ease;
  background: linear-gradient(90deg, #1c4ed8 0%, #1c4ed8 100%);
  color: #ffffff;
}

.rp-plan-cta:hover {
  filter: brightness(1.05);
}

.rp-plan-cta--outline {
  background: transparent;
  border: 1.5px solid #d6d9e0;
  color: #334155;
}

.rp-plan-cta--outline:hover {
  background: #f8fafc;
  border-color: #bcc5d4;
  filter: none;
}

@media (max-width: 820px) {
  body.register-plan-step-active .register-form-wrap {
    width: min(100%, 540px);
  }

  .rp-plan-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .rp-billing-toggle {
    width: 100%;
  }

  .rp-billing-option {
    flex: 1;
    justify-content: center;
    padding: 8px 12px;
  }
}

/* ─── Input icons ────────────────────────────────────────────────────────── */

body.register-page-body .input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

body.register-page-body .input-icon {
  position: absolute;
  left: 12px;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}

body.register-page-body .input-icon svg {
  width: 16px;
  height: 16px;
  stroke: #9CA3AF;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.register-page-body .input-with-icon {
  padding-left: 40px !important;
}

body.register-page-body select.input-with-icon {
  padding-left: 40px !important;
}

.trust-check-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

body.register-page-body .panel-icon-box {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

body.register-page-body .panel-icon-box svg {
  width: 36px;
  height: 36px;
}

body.register-page-body .register-testimonial {
  background: transparent !important;
  border: none !important;
  border-left: none !important;
  padding: 0 16px !important;
  margin-top: 16px;
}

body.register-page-body .register-headline {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* ========================================================================== 
   Teloro visual foundation — low-hanging auth pass (2026-08)
   ========================================================================== */

:root {
  --auth-bg: #f6f7fb;
  --auth-bg-2: #f5f6fe;
  --auth-surface: #ffffff;
  --auth-surface-strong: #ffffff;
  --auth-border: #e6e8f2;
  --auth-ink: #0b0d1a;
  --auth-muted: #767c96;
  --auth-accent: #0007ac;
  --auth-accent-2: #0007ac;
  --auth-shadow: 0 20px 48px rgba(3, 2, 36, 0.08);
  --auth-control-radius: 10px;
}

body.login-page-body,
body.login-page-body button,
body.login-page-body input,
body.login-page-body textarea,
body.login-page-body select {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) {
  background: #ffffff;
  color: var(--auth-ink);
  -webkit-font-smoothing: antialiased;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .auth-page-login,
body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-layout {
  min-height: 100vh;
  background: #ffffff;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-layout {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 20px;
  padding: 20px;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-pane,
body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-pane__inner {
  min-height: calc(100vh - 40px);
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-pane__inner {
  height: auto;
  padding: 18px 34px 30px;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-brand img {
  width: 98px;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-form-wrap {
  width: min(100%, 440px);
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-copy {
  text-align: left;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-copy h1 {
  color: var(--auth-ink);
  font-size: clamp(1.8rem, 2.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-copy p {
  margin-top: 12px;
  color: var(--auth-muted);
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-form {
  margin-top: 38px;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-form .field label {
  color: #4a4f66;
  font-size: 12px;
  font-weight: 500;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-form .field input {
  min-height: 48px;
  border: 1px solid #d3d6e8;
  border-radius: 10px;
  color: var(--auth-ink);
  background: #ffffff;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-form .field input:focus {
  border-color: var(--auth-accent);
  box-shadow: 0 0 0 3px rgba(0, 7, 172, 0.08);
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-submit {
  min-height: 48px;
  margin-top: 30px;
  border-radius: 999px;
  background: var(--auth-accent);
  font-weight: 600;
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-submit:hover {
  background: #00055c;
  box-shadow: 0 8px 22px rgba(0, 7, 172, 0.18);
  transform: translateY(-1px);
  filter: none;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-forgot,
body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-register a {
  color: var(--auth-accent);
  font-weight: 600;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-register {
  color: var(--auth-muted);
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-showcase {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 40px);
  border: 1px solid var(--auth-border);
  border-radius: 24px;
  color: var(--auth-ink);
  background: #f6f7fb;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--auth-accent);
  transform: translateX(-50%);
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-showcase__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-showcase h2 {
  color: var(--auth-ink);
  font-size: clamp(1.8rem, 2.05vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-showcase__copy {
  color: var(--auth-muted);
  font-weight: 400;
}

@media (max-width: 900px) {
  body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) {
    overflow: auto;
  }

  body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-layout {
    display: block;
    padding: 0;
  }

  body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-pane__inner {
    min-height: 100vh;
    padding: 24px 20px 36px;
  }

  body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-copy {
    text-align: center;
  }
}

/* ========================================================================== 
   Unified Teloro authentication experience (2026-08)
   ========================================================================== */

/* Login, two-factor login and campaign login: keep the introduction centered
   and use one typographic system on both sides of the layout. */
body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-copy {
  text-align: center;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-copy h1,
body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-showcase h2 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 2.05vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-copy p,
body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-showcase__copy {
  max-width: 452px;
  margin: 18px auto 0;
  color: var(--auth-muted);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16.4px;
  font-weight: 400;
  line-height: 1.58;
  text-wrap: balance;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-showcase::before {
  content: none;
  display: none;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-form-wrap {
  position: relative;
  width: min(100%, 380px);
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-form {
  margin-top: 22px;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-form .auth-section {
  gap: 10px;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-form .field {
  gap: 5px;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-form .field input {
  min-height: 38px;
  padding: 7px 14px;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-submit {
  min-height: 40px;
  margin-top: 24px;
  padding: 8px 16px;
}

body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-links {
  position: absolute;
  top: calc(100% + 22px);
  left: 0;
  width: 100%;
  margin-top: 0;
  gap: 16px;
}

/* Registration and password recovery now use the same restrained shell as the
   login page. Form names, field order, validation and submission stay intact. */
html body.register-page-body:not(.register-plan-step-active) {
  background: #ffffff;
  color: var(--auth-ink);
  -webkit-font-smoothing: antialiased;
}

html body.register-page-body:not(.register-plan-step-active) .auth-page-register,
html body.register-page-body:not(.register-plan-step-active) .register-layout {
  min-height: 100vh;
  background: #ffffff;
}

html body.register-page-body:not(.register-plan-step-active) .register-layout {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 20px;
  padding: 20px;
}

html body.register-page-body:not(.register-plan-step-active) .register-pane,
html body.register-page-body:not(.register-plan-step-active) .register-pane__inner,
html body.register-page-body:not(.register-plan-step-active) .register-right-aside {
  min-height: calc(100vh - 40px);
}

html body.register-page-body:not(.register-plan-step-active) .register-pane__inner {
  height: auto;
  padding: 18px 34px 30px !important;
}

html body.register-page-body:not(.register-plan-step-active) .login-brand {
  margin-bottom: 0 !important;
}

html body.register-page-body:not(.register-plan-step-active) .login-brand img {
  width: 98px;
}

html body.register-page-body:not(.register-plan-step-active) .register-pane__content {
  align-items: center !important;
  justify-content: center !important;
  padding: 32px 0 42px !important;
}

html body.register-page-body:not(.register-plan-step-active) .register-form-wrap {
  position: relative;
  width: min(100%, 380px) !important;
  max-width: 380px !important;
  margin: 0 auto !important;
  display: block;
}

html body.register-page-body:not(.register-plan-step-active) .register-main-stack {
  width: 100%;
  flex: none;
  justify-content: center;
}

html body.register-page-body:not(.register-plan-step-active) .register-copy {
  text-align: center !important;
}

html body.register-page-body:not(.register-plan-step-active) .register-copy h1,
html body.register-page-body:not(.register-plan-step-active) .register-billing-title {
  margin: 0;
  color: var(--auth-ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: clamp(1.55rem, 1.75vw, 1.8rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.14 !important;
}

html body.register-page-body:not(.register-plan-step-active) .register-copy .register-headline {
  font-size: clamp(1.55rem, 1.8vw, 2rem) !important;
  line-height: 1.2 !important;
}

html body.register-page-body:not(.register-plan-step-active) .register-billing-title {
  font-size: clamp(1.28rem, 1.4vw, 1.45rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.24 !important;
}

html body.register-page-body .register-offer-note {
  width: min(100%, 380px);
  margin: 10px auto 0;
  color: #64748b;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

html body.register-page-body .register-offer-note strong {
  color: #334155;
  font-weight: 600;
}

html body.register-page-body:not(.register-plan-step-active) .register-form {
  margin-top: 22px;
}

html body.register-page-body:not(.register-plan-step-active) .register-form .register-step {
  gap: 10px;
}

html body.register-page-body:not(.register-plan-step-active) .register-grid--two {
  column-gap: 10px;
  row-gap: 10px;
}

html body.register-page-body:not(.register-plan-step-active) .register-form .field,
html body.register-page-body:not(.register-plan-step-active) .register-billing-fields .field {
  gap: 5px;
}

html body.register-page-body:not(.register-plan-step-active) .register-promo-row {
  gap: 8px;
}

html body.register-page-body:not(.register-plan-step-active) .register-promo-row .input-icon-wrapper {
  flex: 1 1 0;
  min-width: 0;
}

html body.register-page-body:not(.register-plan-step-active) .register-promo-apply {
  flex: 0 0 auto;
  width: auto;
  min-width: 112px;
  min-height: 38px;
  padding: 7px 11px;
  border-color: #d3d6e8;
  border-radius: 10px;
  color: #4a4f66;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

html body.register-page-body:not(.register-plan-step-active) .register-form .field > label,
html body.register-page-body:not(.register-plan-step-active) .register-billing-fields .field > label {
  margin-bottom: 0;
  color: #4a4f66;
  font-size: 12px;
  font-weight: 500;
}

html body.register-page-body:not(.register-plan-step-active) .register-form input:not([type="hidden"]):not([type="checkbox"]),
html body.register-page-body:not(.register-plan-step-active) .register-form select,
html body.register-page-body:not(.register-plan-step-active) .register-billing-fields input,
html body.register-page-body:not(.register-plan-step-active) .register-billing-fields select {
  min-height: 38px;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
  border-color: #d3d6e8;
  border-radius: 10px;
  color: var(--auth-ink);
  font-size: 14px !important;
}

html body.register-page-body:not(.register-plan-step-active) input.input-with-icon,
html body.register-page-body:not(.register-plan-step-active) select.input-with-icon {
  padding-left: 14px !important;
}

html body.register-page-body:not(.register-plan-step-active) .input-icon {
  display: none !important;
}

html body.register-page-body:not(.register-plan-step-active) .phone-flag-img,
html body.register-page-body:not(.register-plan-step-active) .phone-country-option-flag {
  display: none;
}

html body.register-page-body:not(.register-plan-step-active) .phone-flag-trigger {
  min-width: 58px;
  color: #4a4f66;
  font-size: 13px;
  font-weight: 500;
}

html body.register-page-body:not(.register-plan-step-active) .phone-country-option {
  grid-template-columns: minmax(0, 1fr) auto;
}

html body.register-page-body:not(.register-plan-step-active) .phone-input-shell {
  min-height: 38px;
  border-color: #d3d6e8;
  border-radius: 10px;
}

html body.register-page-body:not(.register-plan-step-active) .phone-input-shell input,
html body.register-page-body:not(.register-plan-step-active) .phone-input-shell select {
  min-height: 36px;
}

html body.register-page-body:not(.register-plan-step-active) .register-actions {
  margin-top: 14px !important;
}

html body.register-page-body:not(.register-plan-step-active) .register-action--next,
html body.register-page-body:not(.register-plan-step-active) .register-submit {
  min-height: 40px !important;
  padding: 8px 16px !important;
  border-radius: 999px;
  background: var(--auth-accent);
  box-shadow: none;
  font-size: 14px !important;
  font-weight: 600;
}

html body.register-page-body:not(.register-plan-step-active) .register-action--next:hover,
html body.register-page-body:not(.register-plan-step-active) .register-submit:hover {
  background: #00055c;
  box-shadow: 0 8px 22px rgba(0, 7, 172, 0.18);
  transform: translateY(-1px);
  filter: none;
}

html body.register-page-body:not(.register-plan-step-active) .register-footer,
html body.register-page-body:not(.register-plan-step-active) .register-footer--step1 {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  margin-top: 0 !important;
}

html body.register-page-body:not(.register-plan-step-active) .auth-legal,
html body.register-page-body:not(.register-plan-step-active) .register-legal,
html body.register-page-body:not(.register-plan-step-active) .register-form-meta {
  color: var(--auth-muted);
  text-align: center !important;
  font-size: 12px !important;
}

html body.register-page-body:not(.register-plan-step-active) .auth-legal,
html body.register-page-body:not(.register-plan-step-active) .register-legal {
  width: min(100%, 350px);
  max-width: 350px;
  margin: 0 auto !important;
  line-height: 1.55;
  text-wrap: balance;
}

html body.register-page-body:not(.register-plan-step-active) .register-form-meta {
  margin-top: 7px !important;
}

html body.register-page-body:not(.register-plan-step-active) .register-right-aside {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--auth-border);
  border-radius: 24px;
  color: var(--auth-ink);
  background: #f6f7fb !important;
  background-image: none !important;
}

html body.register-page-body:not(.register-plan-step-active) .register-right-aside::before {
  content: none;
  display: none;
}

html body.register-page-body:not(.register-plan-step-active) .register-right-aside .login-showcase__inner {
  width: min(100%, 480px);
}

html body.register-page-body:not(.register-plan-step-active) .register-right-aside .login-showcase h2,
html body.register-page-body:not(.register-plan-step-active) .register-right-aside h2 {
  margin-top: 0 !important;
  color: var(--auth-ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 2.05vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

html body.register-page-body:not(.register-plan-step-active) .register-right-aside .login-showcase__copy {
  margin-top: 18px !important;
  color: var(--auth-muted);
  font-size: 16.4px !important;
  font-weight: 400 !important;
  line-height: 1.58;
}

html body.register-page-body:not(.register-plan-step-active) .register-right-aside .login-rating {
  margin-top: 38px !important;
}

html body.register-page-body:not(.register-plan-step-active) .register-right-aside .login-stars svg,
html body.register-page-body:not(.register-plan-step-active) .register-right-aside .login-rating__score {
  color: var(--auth-accent);
}

html body.register-page-body:not(.register-plan-step-active) .register-right-aside .login-rating__line {
  color: var(--auth-muted);
}

html body.register-page-body:not(.register-plan-step-active) .register-right-aside .register-testimonial {
  margin-top: 28px !important;
  padding: 18px 20px !important;
  border: 1px solid var(--auth-border) !important;
  border-left: 1px solid var(--auth-border) !important;
  border-radius: 16px;
  color: #4a4f66;
  background: rgba(255, 255, 255, 0.72) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  text-align: center;
}

html body.register-page-body:not(.register-plan-step-active) .register-right-aside .register-checkout-summary__rows {
  border-color: var(--auth-border);
}

html body.register-page-body:not(.register-plan-step-active) .register-right-aside .register-checkout-summary__row span,
html body.register-page-body:not(.register-plan-step-active) .register-right-aside .register-checkout-summary__total-side em {
  color: var(--auth-muted);
}

html body.register-page-body:not(.register-plan-step-active) .register-right-aside .register-checkout-summary__row strong,
html body.register-page-body:not(.register-plan-step-active) .register-right-aside .register-checkout-summary__row--total strong {
  color: var(--auth-ink);
}

html body.register-page-body:not(.register-plan-step-active) .register-checkout-summary__trial-notice {
  border-color: #bbf7d0 !important;
  color: #166534 !important;
  background: #f0fdf4 !important;
}

/* Password recovery shares the shell but keeps the narrower login form. */
html body.password-reset-page-body .register-form-wrap {
  width: min(100%, 440px) !important;
  max-width: 440px !important;
}

html body.password-reset-page-body .login-copy {
  text-align: center !important;
}

html body.password-reset-page-body .login-copy h1,
html body.password-reset-page-body .login-showcase h2 {
  font-size: clamp(1.8rem, 2.05vw, 2.4rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.14 !important;
}

html body.password-reset-page-body .login-copy p {
  max-width: 452px;
  margin: 18px auto 0;
  color: var(--auth-muted);
  font-size: 16.4px;
  line-height: 1.58;
}

html body.password-reset-page-body .login-form {
  margin-top: 38px;
}

@media (max-width: 900px) {
  body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-pane__content {
    align-items: center;
    justify-content: center;
    padding: 24px 0 48px;
  }

  html body.register-page-body:not(.register-plan-step-active) .register-layout {
    display: block;
    padding: 0;
  }

  html body.register-page-body:not(.register-plan-step-active) .register-pane__inner {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 24px 20px 36px !important;
  }

  html body.register-page-body:not(.register-plan-step-active) .register-pane__content {
    padding: 42px 0 24px !important;
  }

  html body.register-page-body:not(.register-plan-step-active) .register-right-aside {
    display: none;
  }
}

@media (max-width: 620px) {
  body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-form-wrap {
    width: min(100%, 330px);
  }

  html body.register-page-body:not(.register-plan-step-active) .register-form-wrap {
    width: min(100%, 330px) !important;
    max-width: 330px !important;
  }

  html body.register-page-body:not(.register-plan-step-active) .auth-legal,
  html body.register-page-body:not(.register-plan-step-active) .register-legal {
    width: min(100%, 320px);
    max-width: 320px;
  }

  html body.register-page-body:not(.register-plan-step-active) .register-grid--two {
    grid-template-columns: 1fr;
  }

  html body.register-page-body:not(.register-plan-step-active) .register-copy h1,
  html body.password-reset-page-body .login-copy h1 {
    font-size: 1.65rem !important;
  }

  html body.register-page-body:not(.register-plan-step-active) .register-billing-title {
    font-size: 1.35rem !important;
  }
}

@media (max-height: 700px) {
  body.login-page-body:not(.register-page-body):not(.register-checkout-page-body) .login-links,
  html body.register-page-body:not(.register-plan-step-active) .register-footer,
  html body.register-page-body:not(.register-plan-step-active) .register-footer--step1 {
    position: static;
    margin-top: 12px !important;
  }
}
