:root {
  --auth-color-background: #ffffff;
  --auth-color-surface: rgba(255, 255, 255, 0.92);
  --auth-color-surface-soft: #f6f6f3;
  --auth-color-border: rgba(17, 24, 39, 0.08);
  --auth-color-text: #1f2937;
  --auth-color-muted: #667085;
  --auth-color-accent: #ffcc33;
  --auth-color-accent-text: #2f2a11;
  --auth-display-font: "DIN Alternate", "DIN 2014", "Arial Narrow",
    "Helvetica Neue", Arial, sans-serif;
  --auth-body-font: Inter, "Helvetica Neue", "Hiragino Sans", "Meiryo",
    sans-serif;
  --auth-shell: 960px;
  --auth-shell-narrow: 560px;
}

.page-auth,
.page-auth * {
  box-sizing: border-box;
}

body.page-auth {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf9f5 55%, #ffffff 100%);
  color: var(--auth-color-text);
  font-family: var(--auth-body-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-auth a {
  color: inherit;
}

.page-auth .auth-section {
  padding: 44px 30px 56px;
}

.page-auth .auth-shell {
  max-width: var(--auth-shell);
  margin: 0 auto;
}

.page-auth .auth-shell--narrow {
  max-width: var(--auth-shell-narrow);
}

.page-auth .auth-panel {
  padding: 32px;
  border: 1px solid var(--auth-color-border);
  border-radius: 24px;
  background: var(--auth-color-surface);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.04);
}

.page-auth .auth-panel--wide {
  padding: 36px;
}

.page-auth .auth-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(246, 246, 243, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--auth-color-muted);
}

.page-auth h1,
.page-auth h2 {
  margin: 0;
  font-family: var(--auth-display-font);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.page-auth h1 {
  font-size: clamp(34px, 4.6vw, 48px);
  line-height: 1.06;
}

.page-auth h2 {
  font-size: 24px;
  line-height: 1.15;
}

.page-auth .auth-lead {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--auth-color-muted);
}

.page-auth .auth-state-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--auth-color-muted);
}

.page-auth .auth-notice {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 204, 51, 0.16);
  color: rgba(47, 42, 17, 0.92);
  font-size: 14px;
  line-height: 1.75;
}

.page-auth .auth-notice p {
  margin: 6px 0 0;
}

.page-auth .auth-notice--success {
  background: rgba(34, 197, 94, 0.12);
  color: rgba(20, 83, 45, 0.96);
}

.page-auth .auth-notice--warning {
  background: rgba(255, 204, 51, 0.16);
}

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

.page-auth .auth-form__grid {
  display: grid;
  gap: 16px;
}

.page-auth .auth-field {
  display: grid;
  gap: 8px;
}

.page-auth .auth-field__label {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
  color: rgba(31, 41, 55, 0.82);
}

.page-auth .auth-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: var(--auth-color-text);
  font: inherit;
}

.page-auth .auth-field input::placeholder {
  color: rgba(102, 112, 133, 0.76);
}

.page-auth .auth-field input:focus {
  outline: 2px solid rgba(255, 204, 51, 0.34);
  outline-offset: 2px;
  border-color: rgba(255, 204, 51, 0.8);
}

.page-auth .auth-button {
  margin-top: 18px;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  background: var(--auth-color-accent);
  color: var(--auth-color-accent-text);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.page-auth .auth-button:hover {
  filter: brightness(0.98);
}

.page-auth a.auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  text-decoration: none;
}

.page-auth .auth-button--subtle {
  margin-top: 0;
  border: 1px solid var(--auth-color-border);
  background: #ffffff;
  color: var(--auth-color-text);
}

.page-auth .auth-button--subtle:hover {
  background: #f9fafb;
  filter: none;
}

.page-auth .auth-button--danger {
  background: #b42318;
  color: #ffffff;
}

.page-auth .auth-button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.page-auth .auth-cancellation-link {
  width: fit-content;
  margin-top: 18px;
}

.page-auth .auth-cancellation-form {
  max-width: 360px;
}

.page-auth .auth-links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.page-auth .auth-links--inline {
  grid-template-columns: repeat(2, minmax(0, auto));
  align-items: center;
  justify-content: flex-start;
  column-gap: 18px;
}

.page-auth .auth-links a {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(31, 41, 55, 0.82);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-auth .auth-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.page-auth .auth-summary-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--auth-color-border);
  background: var(--auth-color-surface-soft);
}

.page-auth .auth-summary-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--auth-color-muted);
}

.page-auth .auth-summary-value {
  color: var(--auth-color-text) !important;
  font-size: 16px !important;
  font-weight: 650;
  line-height: 1.7 !important;
}

.page-auth .plus-signup-page .auth-order-flow {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.page-auth .plus-signup-page {
  overflow-x: clip;
}

.page-auth .plus-signup-page .auth-progress {
  margin: 0 0 26px;
}

.page-auth .plus-signup-page .auth-order-section--notice + .auth-progress {
  margin-top: 20px;
}

.page-auth .plus-signup-page .auth-progress-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-auth .plus-signup-page .auth-progress-steps li {
  position: relative;
  display: grid;
  align-content: start;
  gap: 4px;
  min-width: 0;
  min-height: 68px;
  padding: 12px;
  border: 1px solid var(--auth-color-border);
  border-radius: 14px;
  background: var(--auth-color-surface-soft);
}

.page-auth .plus-signup-page .auth-progress-steps li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 1;
  content: "→";
  transform: translateY(-50%);
  color: rgba(31, 41, 55, 0.48);
  font-size: 16px;
  line-height: 1;
}

.page-auth .plus-signup-page .auth-progress-steps li[data-step-state="current"] {
  border-color: rgba(255, 204, 51, 0.68);
  background: rgba(255, 204, 51, 0.12);
}

.page-auth .plus-signup-page .auth-progress-steps li[data-step-state="completed"] {
  background: rgba(31, 41, 55, 0.035);
}

.page-auth .plus-signup-page .auth-progress-step-number {
  color: var(--auth-color-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.page-auth .plus-signup-page .auth-progress-step-number {
  letter-spacing: 0.03em;
}

.page-auth .plus-signup-page .auth-progress-step-title {
  min-width: 0;
  color: var(--auth-color-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.page-auth .plus-signup-page .auth-progress-steps li[data-step-state="current"] .auth-progress-step-number {
  color: var(--auth-color-accent-text);
}

.page-auth .plus-signup-page .auth-plus-current-position {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 18px 0 0;
  padding: 0 13px;
  border: 1px solid rgba(255, 204, 51, 0.68);
  border-radius: 999px;
  background: rgba(255, 204, 51, 0.2);
  color: var(--auth-color-accent-text);
  font-size: 13px;
  font-weight: 700;
}

.page-auth .plus-final-confirmation .auth-final-boundary {
  margin: 0 0 24px;
  padding: 16px 18px;
  border-left: 4px solid var(--auth-color-accent);
  border-radius: 12px;
  background: rgba(255, 204, 51, 0.12);
}

.page-auth .plus-final-confirmation .auth-final-boundary p,
.page-auth .plus-final-confirmation .auth-final-cta-copy {
  margin: 0;
  color: var(--auth-color-text);
  font-size: 15px;
  line-height: 1.8;
}

.page-auth .plus-final-confirmation .auth-final-boundary p + p {
  margin-top: 4px;
}

.page-auth .plus-final-confirmation .auth-final-sections {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.page-auth .plus-signup-page .auth-contract-feature-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 1.4em;
  color: var(--auth-color-text);
  font-size: 15px;
  line-height: 1.8;
}

.page-auth .plus-signup-page .auth-contract-policy-links,
.page-auth .plus-final-confirmation .auth-final-secondary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.page-auth .plus-signup-page .auth-contract-policy-links a,
.page-auth .plus-final-confirmation .auth-final-secondary-links a {
  color: rgba(31, 41, 55, 0.82);
  font-weight: 650;
  text-underline-offset: 0.18em;
}

.page-auth .plus-final-confirmation .auth-final-application-form {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.page-auth .plus-signup-page .auth-contract-sections {
  display: grid;
  gap: 20px;
}

.page-auth .plus-final-confirmation .auth-final-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  color: var(--auth-color-text);
  font-size: 15px;
  line-height: 1.8;
}

.page-auth .plus-final-confirmation .auth-final-consent input {
  width: 20px;
  height: 20px;
  margin: 4px 0 0;
  accent-color: var(--auth-color-accent);
}

.page-auth .plus-signup-page .auth-order-section {
  padding: 26px;
  border: 1px solid var(--auth-color-border);
  border-radius: 20px;
  background: var(--auth-color-surface-soft);
}

.page-auth .plus-signup-page .auth-order-section > p {
  margin: 14px 0 0;
  color: var(--auth-color-muted);
  font-size: 15px;
  line-height: 1.9;
}

.page-auth .plus-signup-page .auth-order-section--notice {
  background: rgba(255, 204, 51, 0.16);
}

.page-auth .plus-signup-page .auth-order-section--current-step {
  border-color: rgba(255, 204, 51, 0.48);
  background: rgba(255, 204, 51, 0.1);
}

.page-auth .plus-signup-page .auth-order-current-position {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 12px !important;
  padding: 0 12px;
  border: 1px solid rgba(255, 204, 51, 0.68);
  border-radius: 999px;
  background: rgba(255, 204, 51, 0.2);
  color: var(--auth-color-accent-text) !important;
  font-size: 12px !important;
  font-weight: 700;
}

.page-auth .plus-signup-page .auth-order-section-kicker {
  margin: 0 0 8px !important;
  color: var(--auth-color-accent-text) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-auth .plus-signup-page .auth-order-current-step-next {
  font-weight: 650;
  color: var(--auth-color-text) !important;
}

.page-auth .plus-signup-page .auth-order-current-step-alternate {
  padding-top: 14px;
  border-top: 1px solid var(--auth-color-border);
}

.page-auth .plus-signup-page .auth-order-product-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 0;
}

.page-auth .plus-signup-page .auth-order-product-item {
  min-width: 0;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
}

.page-auth .plus-signup-page .auth-order-product-item dt {
  color: var(--auth-color-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.6;
}

.page-auth .plus-signup-page .auth-order-product-item dd {
  margin: 8px 0 0;
  color: var(--auth-color-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.page-auth .plus-signup-page .auth-order-steps {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.page-auth .plus-signup-page .auth-order-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 54px;
  margin: 0 0 28px;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #ffffff;
}

.page-auth .plus-signup-page .auth-order-steps li:last-child {
  margin-bottom: 0;
}

.page-auth .plus-signup-page .auth-order-steps li:not(:last-child)::after {
  position: absolute;
  bottom: -24px;
  left: 45px;
  content: "↓";
  color: rgba(31, 41, 55, 0.48);
  font-size: 20px;
  line-height: 1;
}

.page-auth .plus-signup-page .auth-order-steps li[data-step-state="current"] {
  border-color: rgba(255, 204, 51, 0.68);
  background: rgba(255, 204, 51, 0.1);
}

.page-auth .plus-signup-page .auth-order-steps li[data-step-state="completed"] {
  border-color: var(--auth-color-border);
  background: rgba(31, 41, 55, 0.035);
}

.page-auth .plus-signup-page .auth-order-step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--auth-color-border);
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.045);
  color: var(--auth-color-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.page-auth .plus-signup-page .auth-order-steps li[data-step-state="current"] .auth-order-step-label {
  border-color: rgba(255, 204, 51, 0.68);
  background: rgba(255, 204, 51, 0.2);
  color: var(--auth-color-accent-text);
}

.page-auth .plus-signup-page .auth-order-step-content {
  min-width: 0;
}

.page-auth .plus-signup-page .auth-order-steps p {
  margin: 0;
  color: var(--auth-color-text);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.7;
}

.page-auth .plus-signup-page .auth-order-step-state {
  display: block;
  margin-top: 5px;
  color: var(--auth-color-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.page-auth .plus-signup-page .auth-order-steps li[data-step-state="current"] .auth-order-step-state {
  color: var(--auth-color-accent-text);
}

.page-auth .plus-signup-page .auth-order-steps li[data-step-state="completed"] .auth-order-step-state {
  color: var(--auth-color-muted);
}

.page-auth .plus-signup-page .auth-plus-boundary {
  cursor: not-allowed;
  opacity: 0.64;
}

.page-auth .plus-signup-page .auth-plus-boundary:hover {
  background: #ffffff;
}

.page-auth .auth-account-actions {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.page-auth .auth-payment-start-form {
  margin: 0;
}

.page-auth .auth-payment-start-form .auth-button {
  margin-top: 0;
}

.page-auth .auth-payment-card-fieldset {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
}

.page-auth .auth-payment-card-fieldset legend {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
}

.page-auth .auth-payment-card-note {
  margin: 0;
  color: var(--auth-color-muted);
  line-height: 1.8;
}

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

.page-auth #fincode-plus-card-error,
.page-auth #fincode-plus-card-status {
  margin-top: 16px;
}

.page-auth .auth-logout-form {
  margin: 0;
}

.page-auth-account .auth-account-sections {
  display: grid;
  gap: 34px;
  margin-top: 30px;
}

.page-auth-account .auth-account-section {
  min-width: 0;
}

.page-auth-account .auth-account-section h2 {
  margin-bottom: 18px;
}

.page-auth-account .auth-account-column-headings,
.page-auth-account .auth-account-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, 1.6fr) minmax(140px, 0.8fr);
  gap: 20px;
}

.page-auth-account .auth-account-column-headings {
  padding: 0 16px 10px;
  color: var(--auth-color-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.page-auth-account .auth-account-row {
  align-items: center;
  min-width: 0;
  padding: 18px 16px;
  border-top: 1px solid var(--auth-color-border);
}

.page-auth-account .auth-account-row:last-child {
  border-bottom: 1px solid var(--auth-color-border);
}

.page-auth-account .auth-account-row h3 {
  margin: 0;
  color: var(--auth-color-text);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.6;
}

.page-auth-account .auth-account-current,
.page-auth-account .auth-account-action {
  min-width: 0;
  color: var(--auth-color-text);
  font-size: 15px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.page-auth-account .auth-account-action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.page-auth-account .auth-account-email {
  overflow-wrap: anywhere;
}

.page-auth-account .auth-account-section-description {
  max-width: 680px;
  margin: 0;
  color: var(--auth-color-muted);
  line-height: 1.8;
}

.page-auth-account .auth-account-section-action {
  display: flex;
  justify-content: flex-end;
  padding: 16px 16px 0;
}

.page-auth-account .auth-account-settings-link,
.page-auth-account .auth-account-legal-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(31, 41, 55, 0.2);
  border-radius: 999px;
  color: var(--auth-color-text);
  font-weight: 700;
  text-decoration: none;
}

.page-auth-account .auth-account-cell-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-auth-account .auth-account-action-link {
  color: rgba(31, 41, 55, 0.88);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-auth-account .auth-account-action .auth-button {
  width: auto;
  min-height: 44px;
  margin: 0;
}

.page-auth-account .auth-account-action-link:focus-visible,
.page-auth-account .auth-account-settings-link:focus-visible,
.page-auth-account .auth-account-legal-link:focus-visible,
.page-auth-account .auth-account-action .auth-button:focus-visible {
  outline: 3px solid rgba(255, 204, 51, 0.48);
  outline-offset: 3px;
}

.page-auth-receipts .auth-receipt-panel {
  min-width: 0;
}

.page-auth-receipts .auth-receipt-empty {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid var(--auth-color-border);
  border-radius: 16px;
  color: var(--auth-color-muted);
  line-height: 1.8;
}

.page-auth-receipts .auth-receipt-table {
  min-width: 0;
  margin-top: 28px;
  border-bottom: 1px solid var(--auth-color-border);
}

.page-auth-receipts .auth-receipt-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(100px, 0.7fr) minmax(120px, 0.8fr) minmax(160px, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 18px 12px;
  border-top: 1px solid var(--auth-color-border);
}

.page-auth-receipts .auth-receipt-row > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.page-auth-receipts .auth-receipt-row--heading {
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--auth-color-muted);
  font-size: 12px;
  font-weight: 650;
}

.page-auth-receipts .auth-receipt-navigation {
  display: flex;
  margin-top: 28px;
}

.page-auth-receipts .auth-receipt-payment-summary {
  display: grid;
  gap: 0;
  margin: 26px 0;
  border-bottom: 1px solid var(--auth-color-border);
}

.page-auth-receipts .auth-receipt-payment-summary > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.6fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--auth-color-border);
}

.page-auth-receipts .auth-receipt-payment-summary dt {
  color: var(--auth-color-muted);
  font-weight: 650;
}

.page-auth-receipts .auth-receipt-payment-summary dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.page-auth-receipts .auth-receipt-previous-button {
  width: auto;
  margin: 14px 0 0;
}

.page-auth-receipts .auth-receipt-notes {
  margin: 18px 0;
  color: var(--auth-color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.page-auth-receipts .auth-receipt-notes p {
  margin: 0;
}

.page-auth-receipts .auth-account-action-link:focus-visible,
.page-auth-receipts .auth-receipt-previous-button:focus-visible {
  outline: 3px solid rgba(255, 204, 51, 0.48);
  outline-offset: 3px;
}

.page-auth-settings .auth-settings-panel {
  min-width: 0;
}

.page-auth-settings .auth-settings-explanation {
  max-width: 720px;
}

.page-auth-settings .auth-settings-state {
  margin-top: 24px;
}

.page-auth-settings #account-settings-user-profile {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 24px;
}

.page-auth-settings .auth-settings-navigation {
  display: flex;
  margin-top: 28px;
}

.page-auth-settings .auth-settings-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(31, 41, 55, 0.88);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-auth-settings .auth-settings-back-link:focus-visible {
  outline: 3px solid rgba(255, 204, 51, 0.48);
  outline-offset: 3px;
}

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

@media (max-width: 640px) {
  .page-auth .auth-section {
    padding: 32px 18px 44px;
  }

  .page-auth .auth-panel,
  .page-auth .auth-panel--wide {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .page-auth .auth-links--inline {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .page-auth .plus-signup-page .auth-order-section {
    padding: 22px 18px;
  }

  .page-auth .plus-final-confirmation .auth-final-application-form .auth-button {
    width: 100%;
  }

  .page-auth .plus-signup-page .auth-contract-policy-links,
  .page-auth .plus-final-confirmation .auth-final-secondary-links {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .page-auth .plus-signup-page .auth-progress-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .page-auth .plus-signup-page .auth-progress-steps li {
    min-height: 64px;
    padding: 10px;
  }

  .page-auth .plus-signup-page .auth-progress-steps li:not(:last-child)::after {
    display: none;
  }

  .page-auth .plus-signup-page .auth-order-product-summary {
    grid-template-columns: 1fr;
  }

  .page-auth .plus-signup-page .auth-order-steps li {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .page-auth .plus-signup-page .auth-order-steps li:not(:last-child)::after {
    left: 37px;
  }

  .page-auth-account .auth-account-sections {
    gap: 30px;
    margin-top: 26px;
  }

  .page-auth-account .auth-account-column-headings {
    display: none;
  }

  .page-auth-account .auth-account-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 16px 4px;
  }

  .page-auth-account .auth-account-current,
  .page-auth-account .auth-account-action {
    display: grid;
    grid-template-columns: minmax(58px, auto) minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }

  .page-auth-account .auth-account-cell-label {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    color: var(--auth-color-muted);
    font-size: 12px;
    font-weight: 650;
    white-space: normal;
  }

  .page-auth-account .auth-account-section-action {
    justify-content: stretch;
    padding: 14px 4px 0;
  }

  .page-auth-account .auth-account-settings-link,
  .page-auth-account .auth-account-legal-link {
    justify-content: center;
    width: 100%;
  }

  .page-auth-receipts .auth-receipt-row,
  .page-auth-receipts .auth-receipt-row--heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-auth-receipts .auth-receipt-row--heading {
    display: none;
  }

  .page-auth-receipts .auth-receipt-row {
    gap: 10px;
    padding: 18px 4px;
  }

  .page-auth-receipts .auth-receipt-row [data-label] {
    display: grid;
    grid-template-columns: minmax(88px, auto) minmax(0, 1fr);
    gap: 12px;
  }

  .page-auth-receipts .auth-receipt-row [data-label]::before {
    content: attr(data-label);
    color: var(--auth-color-muted);
    font-size: 12px;
    font-weight: 650;
  }

  .page-auth-receipts .auth-receipt-payment-summary > div {
    grid-template-columns: minmax(80px, auto) minmax(0, 1fr);
  }

  .page-auth-receipts .auth-receipt-previous-button {
    width: 100%;
  }

  .page-auth-settings #account-settings-user-profile {
    margin-top: 20px;
  }

  .page-auth-settings .auth-settings-navigation {
    margin-top: 24px;
  }
}

@media (max-width: 360px) {
  .page-auth .plus-signup-page .auth-order-steps li {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 8px;
  }

  .page-auth .plus-signup-page .auth-order-step-label {
    width: fit-content;
    min-width: 74px;
  }

  .page-auth .plus-signup-page .auth-order-steps li:not(:last-child)::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
