/* Pelank Fit authentication UI */
/**
 * Pelank Fit - Design tokens and CSS custom properties.
 */

:root {
  --pf-bg: #f8fafc;
}

body.pelank-fit-app {
  --pf-bg: #f8fafc;
}

.pf-panel[data-pf-density="compact"] {
  --pf-radius-lg: 22px;
  --pf-radius-xl: 28px;
}

@keyframes pcTrainingPanelIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pf-panel,
.pf-login-screen {
  --pf-black: #111111;
  --pf-black-2: #171717;
  --pf-ink: #171717;
  --pf-muted: #6b7280;
  --pf-soft: #9ca3af;
  --pf-accent: #0e7a4a;
  --pf-accent-strong: #075c37;
  --pf-accent-soft: #eaf7f0;
  --pf-bg: #f8fafc;
  --pf-surface: #ffffff;
  --pf-surface-2: rgba(255, 255, 255, 0.88);
  --pf-line: rgba(17, 24, 39, 0.08);
  --pf-line-2: rgba(17, 24, 39, 0.12);
  --pf-success: #0e7a4a;
  --pf-success-bg: #eaf7f0;
  --pf-danger: #dc2626;
  --pf-danger-bg: #fef2f2;
  --pf-warning: #9a6500;
  --pf-warning-bg: #fff7df;
  --pf-info: #1769aa;
  --pf-info-bg: #eef7ff;
  --pf-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.05);
  --pf-shadow-md: 0 18px 50px rgba(15, 23, 42, 0.08);
  --pf-shadow-lg: 0 30px 90px rgba(15, 23, 42, 0.12);
  --pf-focus: 0 0 0 4px rgba(14, 122, 74, 0.18);
}

/**
 * Pelank Fit - Scoped reset and WordPress/theme isolation.
 */

html.pelank-fit-app-root,
body.pelank-fit-app {
  width: 100%;
  max-width: none !important;
  min-width: 0;
  min-height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--pf-bg);
  overflow-x: hidden;
}

/**
 * Pelank Fit - Shared form controls and input components.
 */

.pf-appbar__actions,
.pf-panel__user,
.pf-panel__topbar-actions,
.pf-profile-card__top,
.pf-download-card,
.pf-dashboard-card__heading,
.pf-order-list__item,
.pf-address-card__heading,
.pf-program-card__heading,
.pf-form-card__heading,
.pf-stat-card__top {
  display: flex;
  align-items: center;
}

.pf-stat-card,
.pf-table-card,
.pf-download-card,
.pf-profile-card,
.pf-empty-state,
.pf-dashboard-card,
.pf-address-card,
.pf-program-card,
.pf-contact-card,
.pf-form-card,
.pf-order-detail {
  background: #ffffff;
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius-lg);
  box-shadow: none;
  backdrop-filter: none;
}

.pf-dashboard-card__heading h3,
.pf-table-card__heading h3,
.pf-form-card__heading h3,
.pf-address-card__heading h3,
.pf-program-card__heading h3,
.pf-profile-card h3,
.pf-empty-state h3,
.pf-order-detail__heading h3,
.pf-download-card__body h3 {
  margin: 0;
  color: var(--pf-black);
  font-size: 16px;
  line-height: 1.45;
}

.pf-table-card__heading,
.pf-form-card__heading,
.pf-order-detail__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--pf-line);
}

.pf-table-card__heading span,
.pf-form-card__heading span,
.pf-order-detail__heading span {
  color: var(--pf-muted);
  font-size: 11px;
}

.pf-program-card,
.pf-address-card,
.pf-form-card,
.pf-profile-card,
.pf-empty-state,
.pf-order-detail {
  padding: 20px;
}

.pf-form-card {
  max-width: 1040px;
  padding: 0;
  overflow: hidden;
}

.pf-form-card__heading {
  padding: 18px 20px;
}

.pf-form-card__heading h3 {
  margin-top: 2px;
}

.pf-form {
  display: grid;
  gap: 18px;
  padding: 20px;
}

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

.pf-form label,
.pf-form .form-row {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
}

.pf-form label span,
.pf-form .form-row label,
.pf-form-section h4 {
  color: var(--pf-ink);
  font-size: 11px;
}

.pf-form .woocommerce-input-wrapper {
  display: block;
  min-width: 0;
  width: 100%;
}

.pf-form input[type="text"],
.pf-form input[type="email"],
.pf-form input[type="password"],
.pf-form input[type="tel"],
.pf-form input[type="number"],
.pf-form select,
.pf-form textarea,
.pf-form .select2-container .select2-selection--single {
  width: 100% !important;
  min-height: 48px;
  margin: 0;
  padding: 10px 14px;
  color: var(--pf-ink);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.55;
  background: var(--pf-surface);
  border: 1px solid var(--pf-line-2);
  border-radius: 18px;
  box-shadow: none;
  outline: 0;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease;
}

.pf-form .select2-container,
.pf-form .select2-container--default {
  width: 100% !important;
}

.pf-form .select2-container .select2-selection--single {
  display: flex;
  align-items: center;
  padding: 0 14px;
}

.pf-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding: 0;
  color: var(--pf-ink);
  line-height: 46px;
}

.pf-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 50%;
  left: 12px;
  right: auto;
  transform: translateY(-50%);
}

.pf-form textarea {
  min-height: 150px;
  resize: vertical;
}

.pf-form input::placeholder,
.pf-form textarea::placeholder {
  color: #a0a7b2;
}

.pf-form .required,
.pf-form abbr.required {
  color: var(--pf-danger);
  border: 0;
  text-decoration: none;
}

.pf-form-section {
  padding: 17px;
  background: #F5F7FA;
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius-md);
}

.pf-form-section h4 {
  margin: 0 0 4px;
  font-size: 13px;
}

.pf-form-section p {
  margin: 0 0 14px;
  color: var(--pf-muted);
  font-size: 12px;
}

.pf-support-form {
  margin-top: 14px;
}

.pf-support-form__message {
  grid-column: 1 / -1;
}

.pf-setting-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.pf-setting-option:has(input:checked) {
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.05), transparent 42%),
    var(--pf-surface);
  border-color: rgba(37, 99, 235, 0.075);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.029);
}

.pf-setting-option:has(input:checked)::after {
  content: "";
  position: absolute;
  inset-inline-start: 15px;
  top: 15px;
  width: 12px;
  height: 12px;
  background: var(--pf-clean-accent, #0e7a4a);
  border: 3px solid var(--pf-black);
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.05);
}

.pf-panel[data-pf-density="compact"] .pf-page-hero__copy,
.pf-panel[data-pf-density="compact"] .pf-page-hero__card,
.pf-panel[data-pf-density="compact"] .pf-welcome,
.pf-panel[data-pf-density="compact"] .pf-stat-card,
.pf-panel[data-pf-density="compact"] .pf-dashboard-card,
.pf-panel[data-pf-density="compact"] .pf-program-card,
.pf-panel[data-pf-density="compact"] .pf-address-card,
.pf-panel[data-pf-density="compact"] .pf-profile-card,
.pf-panel[data-pf-density="compact"] .pf-order-detail,
.pf-panel[data-pf-density="compact"] .pf-form {
  padding: 14px;
}

.pf-panel__nav-label,
.pf-panel__nav-group p,
.pf-nav-group-title {
  color: rgba(255, 255, 255, 0.72) !important;
}

.pf-panel input[type="number"],
.pf-login-screen input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/**
 * Pelank Fit - Shared buttons, actions and navigation controls.
 */

.pelank-fit-app
  .pf-panel
  :where(
    h1,
    h2,
    h3,
    h4,
    p,
    a,
    button,
    input,
    select,
    textarea,
    table,
    address,
    label,
    span,
    small,
    strong,
    dl,
    dt,
    dd
  ),
.pelank-fit-app
  .pf-login-screen
  :where(
    h1,
    h2,
    h3,
    h4,
    p,
    a,
    button,
    input,
    select,
    textarea,
    label,
    span,
    small,
    strong
  ) {
  font-family: inherit;
}

.pf-panel button,
.pf-login-screen button {
  font: inherit;
}

.pf-nav-rail__button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #ffffff;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 18px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    color 150ms ease,
    background 150ms ease,
    border-color 150ms ease,
    transform 150ms ease,
    box-shadow 150ms ease,
    opacity 150ms ease;
}

.pf-nav-rail__button .pf-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.pf-nav-rail__button--next .pf-icon {
  transform: rotate(180deg);
}

.pf-nav-rail__button:hover,
.pf-nav-rail__button:focus {
  color: var(--pf-clean-accent, #0e7a4a);
  background: linear-gradient(
    145deg,
    rgba(37, 99, 235, 0.038),
    rgba(255, 255, 255, 0.08)
  );
  border-color: rgba(37, 99, 235, 0.075);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 22px rgba(37, 99, 235, 0.029);
  transform: translateY(-1px);
}

.pf-nav-rail__button[disabled] {
  color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  opacity: 1;
  cursor: default;
  pointer-events: none;
}

.pf-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--pf-black);
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(24, 24, 20, 0.06);
  transition:
    transform 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease;
}

.pf-icon-button .pf-icon {
  width: 18px;
  height: 18px;
}

.pf-theme-switch {
  display: inline-flex;
  margin: 0;
}

.pf-theme-switch__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 42px;
  min-width: 150px;
  padding: 4px 6px 4px 12px;
  color: var(--pf-black);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.038), transparent 58%),
    var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: 999px;
  box-shadow: 0 5px 15px rgba(24, 24, 20, 0.06);
  cursor: pointer;
  transition:
    transform 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.pf-theme-switch__track {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: var(--pf-black);
  background:
    conic-gradient(var(--pf-clean-accent, #0e7a4a) 72%, rgba(17, 17, 16, 0.09) 0),
    var(--pf-surface);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 16, 0.08);
  direction: ltr;
}

.pf-theme-switch__track::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--pf-surface);
  border-radius: inherit;
}

.pf-theme-switch__icon {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pf-black);
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

.pf-theme-switch__icon--moon,
.pf-theme-switch__button.is-dark .pf-theme-switch__icon--sun {
  opacity: 0;
  transform: scale(0.72) rotate(-18deg);
}

.pf-theme-switch__icon--sun,
.pf-theme-switch__button.is-dark .pf-theme-switch__icon--moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.pf-theme-switch__icon .pf-icon {
  width: 15px;
  height: 15px;
  stroke-width: 2.4;
}

.pf-theme-switch__copy {
  display: grid;
  min-width: 0;
  text-align: right;
  line-height: 1.25;
}

.pf-theme-switch__copy strong {
  color: var(--pf-black);
  font-size: 11px;
  white-space: nowrap;
}

.pf-theme-switch__copy small {
  color: var(--pf-muted);
  font-size: 9px;
  white-space: nowrap;
}

.pf-panel__menu-toggle,
.pf-panel__overlay,
.pf-panel__sidebar,
.pf-panel__sidebar-close,
.pf-panel__sidebar-footer,
.pf-panel__topbar-home,
.pf-panel__header,
.pf-panel__content-inner {
  all: unset;
}

.pf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--pf-black) !important;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  background: var(--pf-surface);
  border: 1px solid var(--pf-line-2);
  border-radius: 999px;
  box-shadow: 0 5px 15px rgba(24, 24, 20, 0.05);
  cursor: pointer;
  white-space: normal;
  transition:
    transform 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.pf-button--primary {
  background: var(--pf-clean-accent, #0e7a4a);
  border-color: rgba(17, 17, 16, 0.1);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.05);
}

.pf-button--small {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 11px;
}

.pf-panel input[type="number"]::-webkit-outer-spin-button,
.pf-panel input[type="number"]::-webkit-inner-spin-button,
.pf-login-screen input[type="number"]::-webkit-outer-spin-button,
.pf-login-screen input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pf-site-return-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 5px 11px 5px 13px;
  color: var(--pf-black);
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(24, 24, 20, 0.06);
  text-decoration: none;
  transition:
    transform 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease;
}

.pf-site-return-chip:hover,
.pf-site-return-chip:focus {
  transform: translateY(-1px);
  color: var(--pf-black);
  border-color: rgba(24, 24, 20, 0.18);
  text-decoration: none;
}

.pf-site-return-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 12px;
  color: var(--pf-black);
  background: rgba(14, 122, 74, 0.55);
}

.pf-site-return-chip__icon .pf-icon {
  width: 17px;
  height: 17px;
}

.pf-site-return-chip__copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  min-width: 0;
  line-height: 1.3;
}

.pf-site-return-chip__copy strong,
.pf-site-return-chip__copy small {
  white-space: nowrap;
}

.pf-site-return-chip__copy strong {
  color: var(--pf-black);
  font-size: 11px;
  font-weight: 700;
}

.pf-site-return-chip__copy small {
  color: var(--pf-muted);
  font-size: 9px;
}


/* Pelank Fit 2.20.141 - Responsive labels for compact mobile appbar shortcuts. */
.pf-site-return-chip__label-mobile,
.pf-notification-chip__label-mobile,
.pf-theme-switch__label-mobile,
.pf-panel-home-chip--mobile {
  display: none;
}

/**
 * Pelank Fit - Central typography normalization for user-facing surfaces.
 */

.pf-panel :where(*),
.pf-login-screen :where(*),
.pf-auth-screen :where(*),
.pf-auth-simple-screen :where(*){
  font-weight: 400 !important;
}

.pf-panel
  :where(strong, b, th, h1, h2, h3, h4, h5, h6, label, button, a, em, dt),
.pf-login-screen
  :where(strong, b, th, h1, h2, h3, h4, h5, h6, label, button, a, em, dt),
.pf-auth-screen
  :where(strong, b, th, h1, h2, h3, h4, h5, h6, label, button, a, em, dt),
.pf-auth-simple-screen
  :where(strong, b, th, h1, h2, h3, h4, h5, h6, label, button, a, em, dt),
.pf-wc-scope
  :where(strong, b, th, h1, h2, h3, h4, h5, h6, label, button, a, em, dt){
  font-weight: 400 !important;
}

.pf-panel :where(.dashicons, .pf-icon, svg),
.pf-login-screen :where(.dashicons, .pf-icon, svg){
  font-weight: inherit !important;
}

/**
 * Pelank Fit - Login, registration, OTP and coach authentication screens.
 */

.pf-auth-simple-screen,
.pf-auth-simple-screen *,
.pf-auth-screen,
.pf-auth-screen * {
  box-sizing: border-box;
}

.pf-auth-screen {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
  padding: clamp(14px, 2vw, 30px);
  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(37, 99, 235, 0.05),
      transparent 26%
    ),
    radial-gradient(
      circle at 86% 78%,
      rgba(37, 99, 235, 0.038),
      transparent 24%
    ),
    linear-gradient(
      132deg,
      #111111 0%,
      #f1f5f9 41%,
      #eef2f7 41.2%,
      #f1f5f9 100%
    );
  isolation: isolate;
}

.pf-auth-screen::before,
.pf-auth-screen::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.pf-auth-screen::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 72%);
}

.pf-auth-screen::after {
  top: clamp(20px, 8vw, 120px);
  left: clamp(12px, 8vw, 120px);
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  background: rgba(37, 99, 235, 0.029);
  border: 1px solid rgba(37, 99, 235, 0.05);
  border-radius: 999px;
  filter: blur(1px);
}

.pf-auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  gap: clamp(14px, 2vw, 24px);
  width: min(100%, 1180px);
  min-height: min(760px, calc(100vh - 44px));
}

.pf-auth-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(26px, 3vw, 42px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
}

.pf-auth-panel--intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 52px);
  color: #ffffff;
  background:
    radial-gradient(
      circle at 18% 24%,
      rgba(37, 99, 235, 0.05),
      transparent 26%
    ),
    radial-gradient(
      circle at 82% 88%,
      rgba(37, 99, 235, 0.038),
      transparent 24%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), transparent 35%),
    #111111;
}

.pf-auth-panel--intro::before,
.pf-auth-panel--intro::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.pf-auth-panel--intro::before {
  inset: auto -110px -150px auto;
  width: 360px;
  height: 360px;
  background: rgba(37, 99, 235, 0.038);
  filter: blur(2px);
}

.pf-auth-panel--intro::after {
  top: 20%;
  left: -76px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(37, 99, 235, 0.05);
}

.pf-auth-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pf-auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 8px 10px 8px 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  backdrop-filter: blur(16px);
}

.pf-auth-brand strong,
.pf-auth-brand small {
  display: block;
  white-space: nowrap;
}

.pf-auth-brand strong {
  font-size: 15px;
  line-height: 1.35;
}

.pf-auth-brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.pf-auth-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.35;
  transition:
    transform 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
  white-space: nowrap;
}

.pf-auth-home--dark {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pf-auth-home--light {
  color: var(--pf-black);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 17, 16, 0.1);
  box-shadow: 0 10px 26px rgba(17, 17, 16, 0.06);
}

.pf-auth-intro {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 52px 0;
}

.pf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #075c37;
  font-size: 12px;
  letter-spacing: -0.01em;
}

.pf-auth-panel--intro .pf-kicker {
  color: var(--pf-clean-accent, #0e7a4a);
}

.pf-auth-intro h1 {
  max-width: 680px;
  margin: 0 0 18px;
  color: #ffffff !important;
  font-size: clamp(34px, 4.7vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.pf-auth-intro p:not(.pf-kicker) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 2;
}

.pf-auth-points {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pf-auth-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.pf-auth-points .pf-icon {
  color: var(--pf-clean-accent, #0e7a4a);
}

.pf-auth-panel--form {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 38px);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(248, 250, 252, 0.88)
    ),
    rgba(255, 255, 255, 0.86);
  border-color: rgba(17, 17, 16, 0.1);
  backdrop-filter: blur(22px) saturate(1.16);
}

.pf-auth-card {
  width: min(100%, 500px);
}

.pf-auth-card__toolbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.pf-auth-card__header {
  margin-bottom: 22px;
}

.pf-auth-card__header h2 {
  margin: 0 0 10px;
  color: var(--pf-black);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.pf-auth-card__header p:not(.pf-kicker) {
  max-width: 420px;
  margin: 0;
  color: var(--pf-muted);
  font-size: 13px;
  line-height: 1.95;
}

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

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

.pf-auth-field span {
  color: var(--pf-black);
  font-size: 12px;
}

.pf-auth-field input {
  width: 100%;
  height: 56px;
  padding: 0 17px;
  color: var(--pf-ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 16, 0.13);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(17, 17, 16, 0.045);
  font-size: 14px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
}

.pf-auth-field input::placeholder {
  color: #a0a7b2;
}

.pf-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 0 4px;
  font-size: 12px;
}

.pf-auth-row a,
.pf-auth-switch a {
  color: #075c37;
}

.pf-auth-row a:hover,
.pf-auth-switch a:hover {
  color: var(--pf-black);
}

.pf-auth-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pf-muted);
  cursor: pointer;
  user-select: none;
}

.pf-auth-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--pf-clean-accent, #0e7a4a);
}

.pf-auth-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
  font-size: 14px;
}

.pf-auth-switch {
  margin: 18px 0 0;
  padding: 14px;
  text-align: center;
  color: var(--pf-muted);
  background: rgba(17, 17, 16, 0.045);
  border: 1px solid rgba(17, 17, 16, 0.065);
  border-radius: 18px;
  font-size: 13px;
}

.pf-auth-empty {
  margin: 0;
}

.pf-auth-simple-screen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  padding: clamp(18px, 4vw, 48px);
  background: #f8fafc;
  color: #171717;
  isolation: isolate;
}

.pf-auth-simple-screen::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 8%, rgba(37, 99, 235, 0.05), transparent 28%),
    radial-gradient(
      circle at 50% 100%,
      rgba(15, 23, 42, 0.045),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pf-auth-simple-card {
  width: min(100%, 460px);
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px);
}

.pf-auth-simple-logo {
  width: 52px;
  height: 52px;
  margin: 0 auto 2px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #171717;
  color: #0e7a4a;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

.pf-auth-simple-screen--coach .pf-auth-simple-logo {
  background: #0e7a4a;
  color: #ffffff;
}

.pf-auth-simple-brand {
  display: none;
}

.pf-auth-simple-card h1 {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #171717;
}

.pf-auth-simple-subtitle {
  margin: -4px auto 4px;
  max-width: 30em;
  color: #6b7280;
  line-height: 1.9;
}

.pf-auth-simple-form,
.pf-auth-simple-resend {
  display: grid;
  gap: 12px;
  text-align: right;
}

.pf-auth-simple-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.pf-auth-simple-input-row input,
.pf-auth-simple-form > input,
.pf-auth-simple-resend input {
  width: 100%;
  height: 52px;
  min-width: 0;
  padding: 0 18px;
  border: 1px solid rgba(15, 23, 42, 0.13);
  border-radius: 18px;
  background: #ffffff;
  color: #171717;
  font-size: 0.98rem;
  outline: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.pf-auth-simple-input-row input::placeholder,
.pf-auth-simple-form > input::placeholder,
.pf-auth-simple-resend input::placeholder {
  color: #9ca3af;
}

.pf-auth-simple-input-row button,
.pf-auth-simple-submit,
.pf-auth-simple-resend button {
  min-width: 104px;
  height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 18px;
  background: #171717;
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background-color 0.16s ease;
}

.pf-auth-simple-input-row button:hover,
.pf-auth-simple-submit:hover,
.pf-auth-simple-resend button:hover {
  transform: translateY(-1px);
  background: #171717;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.18);
}

.pf-auth-simple-screen--coach .pf-auth-simple-input-row button,
.pf-auth-simple-screen--coach .pf-auth-simple-submit,
.pf-auth-simple-screen--coach .pf-auth-simple-resend button {
  background: #0e7a4a;
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.05);
}

.pf-auth-simple-helper {
  margin: 0;
  padding: 12px 14px;
  border-radius: 18px;
  background: #f8fafc;
  color: #713f12;
  line-height: 1.8;
  text-align: center;
}

.pf-auth-simple-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #6b7280;
}

.pf-auth-simple-resend {
  margin-top: -2px;
  padding-top: 2px;
}

.pf-auth-simple-resend input {
  height: 46px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.pf-auth-simple-resend button {
  height: 46px;
  min-width: 100%;
  background: #ffffff;
  color: #171717;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: none;
}

.pf-auth-simple-email-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  max-width: 100%;
  padding: 9px 14px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #374151;
  direction: ltr;
  text-align: center;
  word-break: break-all;
}

.pf-auth-simple-small-link {
  display: inline-block;
  justify-self: center;
  margin-top: 0;
  color: #171717;
  text-decoration: none;
}

.pf-auth-simple-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pf-auth-simple-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #171717;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
  transition:
    transform 0.16s ease,
    background-color 0.16s ease,
    box-shadow 0.16s ease;
}

.pf-auth-simple-card .pf-notice {
  text-align: right;
}

.pf-auth-simple-card .pf-notice--info {
  background: #f2f8f5;
  border-color: rgba(37, 99, 235, 0.18);
  color: #1e3a8a;
}

.pf-auth-simple-secondary,
.pf-auth-simple-footer,
.pf-auth-simple-topbar,
.pf-auth-simple-link,
.pf-auth-simple-field,
.pf-auth-simple-field span {
  display: none;
}

.pf-auth-simple-screen--coach {
  background: #f8fafc;
  color: #171717;
}

.pf-auth-simple-screen--coach::before {
  background:
    radial-gradient(circle at 50% 2%, rgba(37, 99, 235, 0.05), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(15, 23, 42, 0.045), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pf-auth-simple-screen--coach .pf-auth-simple-card {
  width: min(100%, 460px);
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.1);
}

.pf-auth-simple-screen--coach .pf-auth-simple-logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #0e7a4a;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.05);
}

.pf-auth-simple-screen--coach .pf-auth-simple-card h1 {
  color: #171717 !important;
}

.pf-auth-simple-screen--coach .pf-auth-simple-subtitle,
.pf-auth-simple-screen--coach .pf-auth-simple-check,
.pf-auth-simple-screen--coach .pf-auth-simple-small-link {
  color: #6b7280;
}

.pf-auth-coach-trust {
  display: none;
}

.pf-auth-simple-screen--coach .pf-auth-simple-input-row input,
.pf-auth-simple-screen--coach .pf-auth-simple-form > input,
.pf-auth-simple-screen--coach .pf-auth-simple-resend input,
.pf-auth-simple-screen--coach input[type="text"],
.pf-auth-simple-screen--coach input[type="tel"],
.pf-auth-simple-screen--coach input[type="password"] {
  background: #ffffff !important;
  color: #171717 !important;
  -webkit-text-fill-color: #171717;
  border-color: rgba(15, 23, 42, 0.13) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.pf-auth-simple-screen--coach .pf-auth-simple-input-row input::placeholder,
.pf-auth-simple-screen--coach .pf-auth-simple-form > input::placeholder,
.pf-auth-simple-screen--coach .pf-auth-simple-resend input::placeholder,
.pf-auth-simple-screen--coach input::placeholder {
  color: #9ca3af !important;
  -webkit-text-fill-color: #9ca3af;
  opacity: 1;
}

.pf-auth-simple-screen--coach input[name="otp_code"] {
  direction: ltr;
  text-align: center;
  letter-spacing: 0.12em;
  font-size: 1.04rem;
}

.pf-auth-simple-screen--coach .pf-auth-simple-helper {
  background: #f8fafc;
  color: #713f12;
  border: 1px solid rgba(14, 122, 74, 0.22);
}

.pf-auth-simple-screen--coach .pf-auth-coach-helper {
  background: #f8fafc;
  color: #4b5563;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pf-auth-simple-screen--coach .pf-auth-simple-submit,
.pf-auth-simple-screen--coach .pf-auth-simple-input-row button,
.pf-auth-simple-screen--coach .pf-auth-simple-resend button {
  background: #0e7a4a;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.05);
}

.pf-auth-simple-screen--coach .pf-auth-simple-resend button {
  border-color: rgba(15, 23, 42, 0.12);
}

.pf-auth-simple-screen--coach .pf-auth-simple-bottom a {
  background: rgba(255, 255, 255, 0.92);
  color: #171717;
}

.pf-auth-screen {
  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(37, 99, 235, 0.034),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 78%,
      rgba(17, 24, 39, 0.035),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pf-auth-screen::before {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 24, 39, 0.025) 1px, transparent 1px);
}

.pf-auth-screen::after {
  background: rgba(37, 99, 235, 0.025);
  border-color: rgba(37, 99, 235, 0.029);
}

.pf-auth-panel {
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.pf-auth-panel--intro {
  color: #171717;
  background:
    radial-gradient(
      circle at 18% 24%,
      rgba(37, 99, 235, 0.029),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pf-auth-panel--intro::before {
  background: rgba(37, 99, 235, 0.029);
}

.pf-auth-panel--intro::after {
  border-color: rgba(37, 99, 235, 0.038);
}

.pf-auth-brand,
.pf-auth-home--dark {
  color: #171717;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(17, 24, 39, 0.08);
}

.pf-auth-brand small,
.pf-auth-intro p:not(.pf-kicker),
.pf-auth-stat small {
  color: #6b7280;
}

.pf-auth-panel--intro .pf-kicker,
.pf-kicker {
  color: #075c37;
}

.pf-auth-intro h1 {
  color: #171717 !important;
}

.pf-auth-card,
.pf-auth-form-card,
.pf-auth-simple-card,
.pf-auth-panel--form {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

.pf-auth-input,
.pf-auth-card input,
.pf-auth-card select,
.pf-auth-card textarea,
.pf-auth-form-card input,
.pf-auth-form-card select,
.pf-auth-form-card textarea,
.pf-auth-simple-card input,
.pf-auth-simple-card select,
.pf-auth-simple-card textarea {
  background: #ffffff;
  border-color: rgba(17, 24, 39, 0.1);
  color: #171717;
}

/* 2.20.159 - Auth screen visual refresh */
.pf-auth-simple-screen {
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: clamp(16px, 4vw, 48px);
  background:
    radial-gradient(circle at 12% 12%, rgba(14, 122, 74, 0.18), transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(17, 24, 39, 0.08), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7f8fb 45%, #eaf7f0 100%);
}

.pf-auth-simple-screen::before {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.55;
}

.pf-auth-simple-shell {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(16px, 3vw, 24px);
  align-items: stretch;
}

.pf-auth-simple-hero,
.pf-auth-simple-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.11);
}

.pf-auth-simple-hero {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 4vw, 40px);
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 14%, rgba(14, 122, 74, 0.26), transparent 24%),
    linear-gradient(145deg, #0f172a 0%, #111827 58%, #171717 100%);
}

.pf-auth-simple-hero::after {
  content: "";
  position: absolute;
  inset: auto -72px -92px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: #0e7a4a;
  opacity: 0.9;
  filter: blur(0.2px);
}

.pf-auth-simple-brandline {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.pf-auth-simple-brandmark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #0e7a4a;
  color: #ffffff;
}

.pf-auth-simple-brandmark img,
.pf-auth-simple-brandmark .pf-brand__logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pf-auth-simple-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.pf-auth-simple-eyebrow,
.pf-auth-simple-card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(14, 122, 74, 0.14);
  color: #0e7a4a;
  border: 1px solid rgba(14, 122, 74, 0.2);
  font-size: 12px;
  line-height: 1.4;
}

.pf-auth-simple-card-kicker {
  justify-self: center;
  background: #d9f0e3;
  color: #075c37;
  border-color: rgba(14, 122, 74, 0.5);
}

.pf-auth-simple-hero h2 {
  margin: 0;
  max-width: 11em;
  color: #ffffff;
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.pf-auth-simple-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 2;
}

.pf-auth-simple-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pf-auth-simple-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.pf-auth-simple-benefits svg {
  flex: 0 0 auto;
  color: #0e7a4a;
}

.pf-auth-simple-card {
  width: 100%;
  min-height: 520px;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.pf-auth-simple-logo {
  width: 60px;
  height: 60px;
  border-radius: 22px;
  background: #0e7a4a;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.13);
}

.pf-auth-simple-card h1 {
  font-size: clamp(1.6rem, 3vw, 2.05rem);
  letter-spacing: -0.025em;
}

.pf-auth-simple-subtitle {
  max-width: 33em;
  color: #64748b;
  font-size: 14px;
}

.pf-auth-simple-input-row {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.pf-auth-simple-input-row input,
.pf-auth-simple-form > input,
.pf-auth-simple-resend input {
  height: 50px;
  border-radius: 18px;
  border-color: transparent;
  box-shadow: none;
}

.pf-auth-simple-input-row input:focus,
.pf-auth-simple-form > input:focus,
.pf-auth-simple-resend input:focus {
  border-color: rgba(14, 122, 74, 0.95);
  box-shadow: 0 0 0 4px rgba(14, 122, 74, 0.18);
}

.pf-auth-simple-input-row button,
.pf-auth-simple-submit,
.pf-auth-simple-resend button {
  min-width: 112px;
  height: 50px;
  border-radius: 18px;
  background: #111827;
  color: #b9dfc9;
  box-shadow: 0 14px 26px rgba(17, 24, 39, 0.16);
}

.pf-auth-simple-input-row button:hover,
.pf-auth-simple-submit:hover,
.pf-auth-simple-resend button:hover {
  background: #000000;
  color: #0e7a4a;
}

.pf-auth-simple-helper {
  border: 1px solid rgba(14, 122, 74, 0.28);
  background: #eaf7f0;
  color: #075c37;
}

.pf-auth-simple-email-chip,
.pf-auth-simple-check,
.pf-auth-simple-small-link {
  font-size: 13px;
}

.pf-auth-simple-bottom {
  width: min(100%, 980px);
  justify-content: space-between;
}

.pf-auth-simple-bottom a {
  min-height: 46px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.08);
}

.pf-auth-simple-bottom a:hover {
  transform: translateY(-1px);
  background: #111827;
  color: #b9dfc9;
}

.pf-auth-simple-screen--coach .pf-auth-simple-hero {
  background:
    radial-gradient(circle at 18% 12%, rgba(14, 122, 74, 0.28), transparent 24%),
    linear-gradient(145deg, #111827 0%, #171717 62%, #111827 100%);
}

.pf-auth-simple-screen--coach .pf-auth-simple-logo,
.pf-auth-simple-screen--coach .pf-auth-simple-input-row button,
.pf-auth-simple-screen--coach .pf-auth-simple-submit,
.pf-auth-simple-screen--coach .pf-auth-simple-resend button {
  background: #0e7a4a;
  color: #ffffff;
}

.pf-auth-simple-screen--coach .pf-auth-simple-input-row button:hover,
.pf-auth-simple-screen--coach .pf-auth-simple-submit:hover,
.pf-auth-simple-screen--coach .pf-auth-simple-resend button:hover {
  background: #075c37;
  color: #111827;
}

.pf-auth-simple-screen--coach .pf-auth-simple-card,
.pf-auth-simple-screen--coach .pf-auth-simple-card h1 {
  color: #171717 !important;
}

@media (max-width: 860px) {
  .pf-auth-simple-screen {
    justify-content: flex-start;
    padding: 14px;
  }

  .pf-auth-simple-shell {
    grid-template-columns: 1fr;
  }

  .pf-auth-simple-hero {
    min-height: auto;
    padding: 22px;
    border-radius: 28px;
  }

  .pf-auth-simple-hero h2 {
    max-width: none;
    font-size: clamp(1.6rem, 7vw, 2.35rem);
  }

  .pf-auth-simple-benefits {
    grid-template-columns: 1fr;
  }

  .pf-auth-simple-card {
    min-height: auto;
    border-radius: 28px;
  }

  .pf-auth-simple-bottom {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .pf-auth-simple-hero {
    display: none;
  }

  .pf-auth-simple-card {
    padding: 22px 16px;
  }

  .pf-auth-simple-input-row {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .pf-auth-simple-input-row button,
  .pf-auth-simple-submit,
  .pf-auth-simple-resend button {
    width: 100%;
  }

  .pf-auth-simple-bottom a {
    flex: 1 1 150px;
  }
}

/* 2.20.160 - premium rounded login stage tabs and input capsule */
.pf-auth-simple-stage-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 8px;
  width: 100%;
  margin: 6px 0 4px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94)),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 36px rgba(15, 23, 42, 0.07);
}

.pf-auth-simple-stage-tabs::before {
  content: "";
  position: absolute;
  inset: -60px auto auto -80px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(14, 122, 74, 0.22);
  filter: blur(10px);
  pointer-events: none;
}

.pf-auth-simple-stage-tab {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 9px 11px;
  color: #64748b;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.45;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.pf-auth-simple-stage-tab__number {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 11px;
  line-height: 1;
}

.pf-auth-simple-stage-tab.is-active {
  color: #0e7a4a;
  background: linear-gradient(135deg, #050505 0%, #111827 100%);
  border-color: rgba(17, 24, 39, 0.92);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

.pf-auth-simple-stage-tab.is-active .pf-auth-simple-stage-tab__number {
  color: #ffffff;
  background: #0e7a4a;
  border-color: rgba(14, 122, 74, 0.9);
  box-shadow: 0 8px 16px rgba(14, 122, 74, 0.22);
}

.pf-auth-simple-form {
  margin-top: 2px;
}

.pf-auth-simple-input-row {
  position: relative;
  overflow: hidden;
  gap: 8px;
  padding: 9px;
  border-radius: 30px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(14, 122, 74, 0.76), rgba(17, 24, 39, 0.1), rgba(255, 255, 255, 0.85)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 20px 45px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.pf-auth-simple-input-row::before {
  content: "";
  position: absolute;
  inset: auto -44px -72px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(14, 122, 74, 0.22);
  pointer-events: none;
}

.pf-auth-simple-input-row:focus-within {
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.11),
    0 0 0 5px rgba(14, 122, 74, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.pf-auth-simple-input-row input,
.pf-auth-simple-form > input,
.pf-auth-simple-resend input {
  position: relative;
  z-index: 1;
  height: 54px;
  padding-inline: 18px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.pf-auth-simple-input-row input:focus,
.pf-auth-simple-form > input:focus,
.pf-auth-simple-resend input:focus {
  background: #ffffff;
  border-color: rgba(14, 122, 74, 0.72);
  box-shadow: none;
}

.pf-auth-simple-input-row button,
.pf-auth-simple-submit,
.pf-auth-simple-resend button {
  position: relative;
  z-index: 1;
  height: 54px;
  min-width: 118px;
  padding-inline: 22px;
  border-radius: 24px;
  color: #111827;
  background: linear-gradient(135deg, #0e7a4a 0%, #075c37 100%);
  box-shadow:
    0 16px 28px rgba(14, 122, 74, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.pf-auth-simple-input-row button:hover,
.pf-auth-simple-submit:hover,
.pf-auth-simple-resend button:hover {
  background: linear-gradient(135deg, #111827 0%, #050505 100%);
  color: #0e7a4a;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.pf-auth-simple-card-kicker {
  padding: 8px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eaf7f0 0%, #ffffff 100%);
  box-shadow: 0 12px 24px rgba(14, 122, 74, 0.14);
}

.pf-auth-simple-screen--coach .pf-auth-simple-stage-tab.is-active,
.pf-auth-simple-screen--coach .pf-auth-simple-input-row button,
.pf-auth-simple-screen--coach .pf-auth-simple-submit,
.pf-auth-simple-screen--coach .pf-auth-simple-resend button {
  color: #111827;
  background: linear-gradient(135deg, #0e7a4a 0%, #075c37 100%);
}

.pf-auth-simple-screen--coach .pf-auth-simple-stage-tab.is-active .pf-auth-simple-stage-tab__number {
  color: #b9dfc9;
  background: #111827;
  border-color: rgba(17, 24, 39, 0.88);
}

.pf-auth-simple-screen--coach .pf-auth-simple-input-row button:hover,
.pf-auth-simple-screen--coach .pf-auth-simple-submit:hover,
.pf-auth-simple-screen--coach .pf-auth-simple-resend button:hover {
  color: #0e7a4a;
  background: linear-gradient(135deg, #111827 0%, #050505 100%);
}

@media (max-width: 540px) {
  .pf-auth-simple-stage-tabs {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 7px;
    border-radius: 22px;
    scrollbar-width: none;
  }

  .pf-auth-simple-stage-tabs::-webkit-scrollbar {
    display: none;
  }

  .pf-auth-simple-stage-tab {
    flex: 1 0 auto;
    min-height: 42px;
    padding: 8px 10px;
  }

  .pf-auth-simple-input-row {
    border-radius: 26px;
    padding: 8px;
  }

  .pf-auth-simple-input-row input,
  .pf-auth-simple-input-row button,
  .pf-auth-simple-submit,
  .pf-auth-simple-resend button {
    height: 52px;
    border-radius: 21px;
  }
}

/* 2.20.161 - login brand logo, real rounded inputs and readable navigation hovers */
.pf-auth-simple-card > .pf-auth-simple-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.pf-auth-simple-logo .pf-auth-simple-logo-mark {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: inherit;
  background: #111827;
  color: #b9dfc9;
}

.pf-auth-simple-logo .pf-auth-simple-logo-mark.pf-brand__mark--logo,
.pf-auth-simple-logo .pf-auth-simple-logo-mark.pf-brand__mark--logo img,
.pf-auth-simple-logo .pf-auth-simple-logo-mark .pf-brand__logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pf-auth-simple-logo .pf-auth-simple-logo-mark:not(.pf-brand__mark--logo) svg {
  width: 30px;
  height: 30px;
}

.pf-auth-simple-input-row {
  align-items: stretch;
}

.pf-auth-simple-card .pf-auth-simple-input-row input,
.pf-auth-simple-card .pf-auth-simple-form > input,
.pf-auth-simple-card .pf-auth-simple-resend input,
.pf-auth-simple-screen .pf-auth-simple-input-row input,
.pf-auth-simple-screen .pf-auth-simple-form > input,
.pf-auth-simple-screen .pf-auth-simple-resend input {
  height: 56px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  color: #111827 !important;
  -webkit-text-fill-color: #111827;
}

.pf-auth-simple-card .pf-auth-simple-input-row input:focus,
.pf-auth-simple-card .pf-auth-simple-form > input:focus,
.pf-auth-simple-card .pf-auth-simple-resend input:focus,
.pf-auth-simple-screen .pf-auth-simple-input-row input:focus,
.pf-auth-simple-screen .pf-auth-simple-form > input:focus,
.pf-auth-simple-screen .pf-auth-simple-resend input:focus {
  background: #ffffff !important;
  border-color: #0e7a4a !important;
  box-shadow:
    0 0 0 5px rgba(14, 122, 74, 0.18),
    0 16px 34px rgba(15, 23, 42, 0.08) !important;
}

.pf-auth-simple-input-row button,
.pf-auth-simple-submit,
.pf-auth-simple-resend button {
  border-radius: 999px !important;
}

.pf-auth-simple-screen .pf-auth-simple-bottom a,
.pf-auth-simple-screen .pf-auth-simple-bottom a:visited {
  color: #111827 !important;
}

.pf-auth-simple-screen .pf-auth-simple-bottom a:hover,
.pf-auth-simple-screen .pf-auth-simple-bottom a:focus-visible {
  background: #111827 !important;
  color: #ffffff !important;
  border-color: #111827 !important;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16) !important;
}

.pf-auth-simple-screen .pf-auth-simple-bottom a:hover svg,
.pf-auth-simple-screen .pf-auth-simple-bottom a:focus-visible svg {
  color: #0e7a4a !important;
  stroke: currentColor;
}

.pf-auth-simple-screen .pf-auth-simple-bottom a span {
  color: inherit !important;
}

@media (max-width: 540px) {
  .pf-auth-simple-card > .pf-auth-simple-logo {
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }

  .pf-auth-simple-input-row {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 10px;
  }

  .pf-auth-simple-card .pf-auth-simple-input-row input,
  .pf-auth-simple-screen .pf-auth-simple-input-row input {
    height: 54px !important;
    border-radius: 999px !important;
  }
}

.pf-auth-turnstile {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 100%;
  margin: 12px 0 2px;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: rgba(248, 250, 252, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pf-auth-turnstile p {
  margin: 0;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
}

.pf-auth-turnstile .cf-turnstile {
  min-height: 65px;
  max-width: 100%;
  overflow: hidden;
}

.pf-auth-simple-resend .pf-auth-turnstile {
  grid-column: 1 / -1;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.88);
}

@media (max-width: 540px) {
  .pf-auth-turnstile {
    padding: 10px 8px;
    border-radius: 18px;
  }

  .pf-auth-turnstile .cf-turnstile {
    transform-origin: center;
    max-width: calc(100vw - 72px);
  }
}


/* --------------------------------------------------------------------------
 * Pelank Fit 2.20.188 - Clean login screen with blue accent system.
 * -------------------------------------------------------------------------- */

/**
 * Pelank Fit Clean Frontend CSS 2.20.188
 * Consolidated clean component system for panel, auth, commerce and service product screens.
 * Legacy frontend CSS modules were removed from the package and are no longer enqueued.
 */

/**
 * Pelank Fit Clean UI layer.
 * First pass: banking-style authentication and OTP screens.
 */

.pf-auth-clean-screen,
.pf-auth-clean-screen * {
  box-sizing: border-box;
}

.pf-auth-clean-screen {
  --pf-clean-blue: #0e7a4a;
  --pf-clean-accent: #0e7a4a;
  --pf-clean-blue-dark: #075c37;
  --pf-clean-text: #071425;
  --pf-clean-muted: #667085;
  --pf-clean-line: #e7ebe8;
  --pf-clean-bg: #f5f7f5;
  --pf-clean-soft: #f7faf8;
  --pf-clean-shadow: 0 28px 80px rgba(15, 23, 42, 0.10);

  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  padding: clamp(18px, 4vw, 48px) !important;
  background: var(--pf-clean-bg) !important;
  color: var(--pf-clean-text) !important;
}

.pf-auth-clean-screen::before,
.pf-auth-clean-screen::after {
  display: none !important;
}

.pf-auth-clean-shell {
  width: min(100%, 1060px) !important;
  min-height: 572px;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 0 !important;
  align-items: stretch !important;
  direction: ltr;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--pf-clean-shadow);
}

.pf-auth-clean-visual,
.pf-auth-clean-card {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.pf-auth-clean-visual {
  position: relative;
  min-height: 572px !important;
  display: grid !important;
  place-items: center;
  padding: 0 !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.65), transparent 12%),
    radial-gradient(circle at 72% 34%, rgba(34, 197, 94, 0.30), transparent 28%),
    linear-gradient(145deg, #0d1711 0%, #14251a 62%, #0a120d 100%) !important;
}

.pf-auth-clean-visual::before {
  content: "";
  position: absolute;
  inset: -20% 10% auto auto;
  width: 62%;
  height: 70%;
  border: 2px solid rgba(255, 255, 255, 0.20);
  border-radius: 46px;
  transform: rotate(45deg);
}

.pf-auth-clean-visual::after {
  content: "";
  position: absolute;
  inset: auto 18% 20px auto;
  width: 16px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 22px 0 0 rgba(255, 255, 255, 0.46);
}

.pf-auth-clean-illustration {
  position: relative;
  width: min(76%, 390px);
  height: 330px;
  transform: translateY(10px);
}

.pf-auth-clean-cloud {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 45%, #ffffff 0 20%, transparent 21%),
    radial-gradient(circle at 48% 36%, #ffffff 0 31%, transparent 32%),
    radial-gradient(circle at 67% 45%, #ffffff 0 22%, transparent 23%),
    linear-gradient(#ffffff, #eef6ff);
  filter: drop-shadow(0 12px 20px rgba(93, 134, 182, 0.20));
}

.pf-auth-clean-cloud--one {
  width: 132px;
  height: 68px;
  top: 6px;
  left: 4px;
}

.pf-auth-clean-cloud--two {
  width: 92px;
  height: 48px;
  right: 6px;
  top: 72px;
  opacity: 0.88;
}

.pf-auth-clean-window {
  position: absolute;
  z-index: 2;
  inset: 92px 34px 42px 34px;
  border: 8px solid #31483a;
  border-radius: 18px;
  background: linear-gradient(180deg, #edf9f1 0%, #ffffff 100%);
  box-shadow:
    0 28px 46px rgba(53, 74, 121, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.pf-auth-clean-window::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 34px;
  border-radius: 9px 9px 0 0;
  background: linear-gradient(90deg, #d5f2df, #edf9f1);
  border-bottom: 1px solid rgba(95, 111, 160, 0.12);
}

.pf-auth-clean-dot {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 13px 2px 0;
  border-radius: 999px;
  background: #0e7a4a;
}

.pf-auth-clean-chart--line {
  position: absolute;
  left: 24px;
  right: 22px;
  bottom: 20px;
  height: 92px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(86, 106, 169, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(86, 106, 169, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(91, 123, 255, 0.12), rgba(255, 255, 255, 0.5));
  background-size: 16px 16px, 16px 16px, 100% 100%;
  overflow: hidden;
}

.pf-auth-clean-chart--line::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  height: 52px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #0e7a4a, #86dda2);
  clip-path: polygon(0 100%, 9% 70%, 18% 82%, 32% 24%, 46% 8%, 61% 36%, 76% 52%, 90% 26%, 100% 42%, 100% 100%);
}

.pf-auth-clean-chart--bar {
  position: absolute;
  left: 24px;
  top: 56px;
  width: 78px;
  height: 74px;
  display: flex;
  align-items: end;
  gap: 7px;
  padding: 12px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(70, 94, 143, 0.13);
}

.pf-auth-clean-chart--bar i {
  display: block;
  width: 10px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #0e7a4a, #86dda2);
}

.pf-auth-clean-chart--bar i:nth-child(1) { height: 28px; }
.pf-auth-clean-chart--bar i:nth-child(2) { height: 43px; background: linear-gradient(180deg, #36c96c, #a5e8b9); }
.pf-auth-clean-chart--bar i:nth-child(3) { height: 36px; background: linear-gradient(180deg, #0e7a4a, #86dda2); }
.pf-auth-clean-chart--bar i:nth-child(4) { height: 55px; background: linear-gradient(180deg, #5edb87, #9ceab4); }

.pf-auth-clean-cardlet {
  position: absolute;
  right: 26px;
  top: 58px;
  width: 108px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #75d694, #c6efd3);
}

.pf-auth-clean-cardlet--two {
  top: 86px;
  width: 80px;
  opacity: 0.55;
}

.pf-auth-clean-widget {
  position: absolute;
  z-index: 4;
  border-radius: 18px;
  box-shadow: 0 20px 34px rgba(53, 74, 121, 0.20);
}

.pf-auth-clean-widget--small {
  left: 24px;
  bottom: 38px;
  width: 72px;
  height: 92px;
  background:
    linear-gradient(90deg, #0e7a4a 0 50%, transparent 51%) 18px 18px / 38px 7px no-repeat,
    linear-gradient(#ffffff 0 0) 18px 36px / 11px 11px no-repeat,
    linear-gradient(#ffffff 0 0) 38px 36px / 11px 11px no-repeat,
    linear-gradient(#ffffff 0 0) 18px 56px / 11px 11px no-repeat,
    linear-gradient(#ffffff 0 0) 38px 56px / 11px 11px no-repeat,
    linear-gradient(180deg, #35c96b, #179648);
}

.pf-auth-clean-widget--wide {
  right: 6px;
  top: 66px;
  width: 118px;
  height: 56px;
  background:
    linear-gradient(90deg, #5edb87, #9ceab4),
    linear-gradient(180deg, #c5f1d2, #82dea0);
}

.pf-auth-clean-widget--wide::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 24px;
  height: 7px;
  border-radius: 999px;
  background: #0e7a4a;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.48) inset;
}

.pf-auth-clean-widget--wide::after {
  content: "";
  position: absolute;
  left: 48px;
  top: 19px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(53, 74, 121, 0.12);
}

.pf-auth-clean-card {
  min-height: 572px !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px !important;
  padding: clamp(36px, 5vw, 64px) clamp(34px, 5vw, 70px) !important;
  direction: rtl;
  text-align: center !important;
  background: #ffffff !important;
  color: var(--pf-clean-text) !important;
  backdrop-filter: none !important;
}

.pf-auth-clean-logo {
  width: 96px;
  min-height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.pf-auth-clean-logo .pf-auth-clean-logo-mark,
.pf-auth-clean-logo .pf-brand__mark,
.pf-auth-clean-logo img,
.pf-auth-clean-logo .pf-brand__logo {
  max-width: 112px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.pf-auth-clean-logo .pf-auth-clean-logo-mark:not(.pf-brand__mark--logo) {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--pf-clean-blue);
  background: #ecfdf3;
}

.pf-auth-clean-card h1 {
  margin: 0 !important;
  color: var(--pf-clean-text) !important;
  font-size: clamp(24px, 2.5vw, 30px) !important;
  line-height: 1.45 !important;
  letter-spacing: -0.02em !important;
}

.pf-auth-clean-subtitle {
  max-width: 360px !important;
  margin: -2px auto 18px !important;
  color: var(--pf-clean-muted) !important;
  font-size: 14px !important;
  line-height: 2 !important;
}

.pf-auth-clean-card .pf-notice {
  width: 100%;
  margin: 0 0 4px;
  text-align: right !important;
  border-radius: 16px;
  box-shadow: none;
}

.pf-auth-clean-form,
.pf-auth-clean-resend {
  width: min(100%, 392px) !important;
  display: grid !important;
  gap: 12px !important;
  margin: 0 auto !important;
  text-align: right !important;
}

.pf-auth-clean-label {
  display: block !important;
  margin: 0 0 2px;
  color: var(--pf-clean-text) !important;
  font-size: 13px;
  line-height: 1.7;
}

.pf-auth-clean-form input:not([type="hidden"]):not([type="checkbox"]),
.pf-auth-clean-resend input:not([type="hidden"]):not([type="checkbox"]),
.pf-auth-clean-card .pf-auth-simple-input-row input,
.pf-auth-clean-card .pf-auth-simple-form > input,
.pf-auth-clean-card .pf-auth-simple-resend input {
  width: 100% !important;
  height: 52px !important;
  padding: 0 16px !important;
  color: var(--pf-clean-text) !important;
  -webkit-text-fill-color: var(--pf-clean-text) !important;
  background: #ffffff !important;
  border: 1px solid var(--pf-clean-line) !important;
  border-radius: 9px !important;
  box-shadow: none !important;
  font-size: 15px !important;
  outline: none !important;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.pf-auth-clean-form input::placeholder,
.pf-auth-clean-resend input::placeholder {
  color: #a3adba !important;
  -webkit-text-fill-color: #a3adba !important;
  opacity: 1;
}

.pf-auth-clean-form input:focus,
.pf-auth-clean-resend input:focus {
  border-color: rgba(34, 197, 94, 0.62) !important;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.10) !important;
}

.pf-auth-clean-submit,
.pf-auth-clean-secondary-button,
.pf-auth-clean-card .pf-auth-simple-input-row button,
.pf-auth-clean-card .pf-auth-simple-submit,
.pf-auth-clean-card .pf-auth-simple-resend button {
  width: 100% !important;
  min-width: 0 !important;
  height: 52px !important;
  margin-top: 14px !important;
  padding: 0 18px !important;
  border: 0 !important;
  border-radius: 9px !important;
  color: #ffffff !important;
  background: var(--pf-clean-blue) !important;
  box-shadow: none !important;
  font-size: 15px !important;
  line-height: 1 !important;
  cursor: pointer;
  transition: background-color 0.16s ease, transform 0.16s ease, opacity 0.16s ease;
}

.pf-auth-clean-submit:hover,
.pf-auth-clean-secondary-button:hover,
.pf-auth-clean-card .pf-auth-simple-input-row button:hover,
.pf-auth-clean-card .pf-auth-simple-submit:hover,
.pf-auth-clean-card .pf-auth-simple-resend button:hover {
  color: #ffffff !important;
  background: var(--pf-clean-blue-dark) !important;
  transform: translateY(-1px);
}

.pf-auth-clean-submit[disabled],
.pf-auth-clean-secondary-button[disabled],
.pf-auth-clean-card button[disabled] {
  opacity: 0.56 !important;
  cursor: wait !important;
  transform: none !important;
}

.pf-auth-otp-hidden {
  position: absolute !important;
  inset: auto auto 0 0 !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.pf-auth-clean-code-sent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  flex-wrap: wrap;
  margin: 2px 0 8px;
  color: var(--pf-clean-muted);
  font-size: 13px;
  line-height: 1.9;
  text-align: center;
}

.pf-auth-clean-code-sent a,
.pf-auth-clean-small-link {
  color: var(--pf-clean-blue) !important;
  text-decoration: none !important;
}

.pf-auth-clean-code-sent a:hover,
.pf-auth-clean-small-link:hover {
  color: var(--pf-clean-blue-dark) !important;
}

.pf-auth-otp-digits {
  direction: ltr;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 6px auto 2px;
}

.pf-auth-clean-card .pf-auth-otp-digits input[data-pf-otp-digit] {
  width: 48px !important;
  height: 52px !important;
  flex: 0 0 48px;
  padding: 0 !important;
  text-align: center !important;
  direction: ltr !important;
  border-radius: 10px !important;
  font-size: 22px !important;
  line-height: 1 !important;
}

.pf-auth-clean-otp-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 3px 0 2px;
  color: var(--pf-clean-muted);
  font-size: 13px;
  line-height: 1.7;
}

.pf-auth-clean-otp-meta strong {
  color: var(--pf-clean-text);
  font-weight: 500;
}

.pf-auth-clean-resend {
  margin-top: 4px !important;
  padding-top: 12px;
  border-top: 1px solid #edf1ee;
}

.pf-auth-clean-resend .pf-auth-clean-secondary-button {
  margin-top: 2px !important;
  color: var(--pf-clean-blue) !important;
  background: #ffffff !important;
  border: 1px solid #cfe8d6 !important;
}

.pf-auth-clean-resend .pf-auth-clean-secondary-button:hover {
  color: #ffffff !important;
  background: var(--pf-clean-blue) !important;
  border-color: var(--pf-clean-blue) !important;
}

.pf-auth-clean-chip {
  justify-self: center;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  color: #48556a;
  background: #f2f7f3;
  direction: ltr;
  text-align: center;
  word-break: break-word;
  font-size: 13px;
}

.pf-auth-clean-helper {
  width: min(100%, 392px);
  margin: 0 auto 4px !important;
  padding: 11px 13px;
  color: #48556a !important;
  background: #f8fafc !important;
  border: 1px solid #e5eaf1;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.9;
}

.pf-auth-clean-small-link {
  display: inline-flex !important;
  justify-content: center;
  margin-top: 4px;
  font-size: 13px;
}

.pf-auth-clean-empty {
  width: min(100%, 392px);
  margin: 0 auto !important;
  border-radius: 18px !important;
}

.pf-auth-clean-card .pf-auth-turnstile {
  margin: 2px 0 !important;
  padding: 10px !important;
  border-radius: 12px !important;
  background: #f8fafc !important;
  border-color: #e5eaf1 !important;
  box-shadow: none !important;
}

.pf-auth-clean-bottom {
  width: min(100%, 1060px) !important;
  display: flex !important;
  justify-content: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  direction: rtl;
}

.pf-auth-clean-bottom a,
.pf-auth-clean-bottom a:visited {
  min-height: 38px !important;
  padding: 8px 12px !important;
  color: #667085 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.pf-auth-clean-bottom a:hover,
.pf-auth-clean-bottom a:focus-visible {
  color: var(--pf-clean-blue) !important;
  background: rgba(34, 197, 94, 0.07) !important;
}

@media (max-width: 860px) {
  .pf-auth-clean-screen {
    padding: 18px !important;
  }

  .pf-auth-clean-shell {
    width: min(100%, 480px) !important;
    min-height: 0;
    grid-template-columns: 1fr !important;
    border-radius: 24px;
  }

  .pf-auth-clean-visual {
    display: none !important;
  }

  .pf-auth-clean-card {
    min-height: 0 !important;
    padding: 34px 24px !important;
    border-radius: 24px !important;
  }

  .pf-auth-clean-logo {
    margin-bottom: 10px;
  }
}

@media (max-width: 520px) {
  .pf-auth-clean-screen {
    justify-content: flex-start !important;
    padding: 16px 12px !important;
  }

  .pf-auth-clean-shell {
    width: 100% !important;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  }

  .pf-auth-clean-card {
    padding: 30px 18px !important;
  }

  .pf-auth-clean-card h1 {
    font-size: 23px !important;
  }

  .pf-auth-clean-subtitle {
    margin-bottom: 12px !important;
  }

  .pf-auth-otp-digits {
    gap: 7px;
  }

  .pf-auth-clean-card .pf-auth-otp-digits input[data-pf-otp-digit] {
    width: 42px !important;
    height: 48px !important;
    flex-basis: 42px;
    font-size: 20px !important;
  }

  .pf-auth-clean-bottom a {
    flex: 0 1 auto !important;
  }
}

@media (max-width: 390px) {
  .pf-auth-otp-digits {
    gap: 5px;
  }

  .pf-auth-clean-card .pf-auth-otp-digits input[data-pf-otp-digit] {
    width: 38px !important;
    flex-basis: 38px;
  }
}


.pf-auth-clean-field-hint {
  display: block;
  margin-top: -4px;
  color: var(--pf-clean-muted);
  font-size: 12px;
  line-height: 1.9;
  text-align: right;
}

.pf-auth-clean-form--mobile input[type="tel"] {
  direction: ltr;
  text-align: center;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.pf-auth-clean-card .pf-auth-otp-digits input[data-pf-otp-digit]:focus {
  border-color: var(--pf-clean-blue) !important;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.13) !important;
}

.pf-auth-clean-visual {
  border-inline-end: 1px solid rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 520px) {
  .pf-auth-clean-screen {
    font-size: 16px !important;
  }

  .pf-auth-clean-card {
    gap: 15px !important;
    padding: 32px 18px 28px !important;
  }

  .pf-auth-clean-logo {
    width: 104px;
    min-height: 58px;
    margin-bottom: 10px;
  }

  .pf-auth-clean-card h1 {
    font-size: 25px !important;
    line-height: 1.55 !important;
  }

  .pf-auth-clean-subtitle {
    max-width: 320px !important;
    margin-bottom: 14px !important;
    font-size: 15px !important;
    line-height: 2 !important;
  }

  .pf-auth-clean-label {
    font-size: 14px !important;
  }

  .pf-auth-clean-form input:not([type="hidden"]):not([type="checkbox"]),
  .pf-auth-clean-resend input:not([type="hidden"]):not([type="checkbox"]) {
    height: 56px !important;
    font-size: 16px !important;
  }

  .pf-auth-clean-submit,
  .pf-auth-clean-secondary-button {
    height: 56px !important;
    font-size: 16px !important;
  }

  .pf-auth-clean-field-hint,
  .pf-auth-clean-code-sent,
  .pf-auth-clean-otp-meta,
  .pf-auth-clean-small-link,
  .pf-auth-clean-helper,
  .pf-auth-clean-bottom a {
    font-size: 14px !important;
  }

  .pf-auth-clean-card .pf-auth-otp-digits input[data-pf-otp-digit] {
    font-size: 23px !important;
  }
}

/* Pelank Fit 2.20.188: isolate the clean auth screen from legacy login rules. */
.pf-auth-clean-screen {
  --pf-accent: #0e7a4a !important;
  --pf-accent-strong: #075c37 !important;
  --pf-focus: 0 0 0 4px rgba(34, 197, 94, 0.14) !important;
}

.pf-auth-clean-screen :where(a, button, input, .pf-icon, svg) {
  accent-color: #0e7a4a;
}

.pf-auth-clean-screen .pf-auth-turnstile iframe {
  max-width: 100%;
}

@media (prefers-color-scheme: dark) {
  .pf-auth-clean-screen {
    --pf-clean-text: #111827;
    --pf-clean-muted: #667085;
    --pf-clean-bg: #f5f7f5;
    background: var(--pf-clean-bg) !important;
  }
}



/* Pelank Fit 2.32.3: polished site-return control and progressive OTP autofill. */
.pf-auth-clean-autofill-note {
  width: min(100%, 392px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 auto 2px;
  padding: 10px 12px;
  color: #526071;
  background: #f7faf8;
  border: 1px solid #e2ebe5;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.8;
  text-align: right;
}

.pf-auth-clean-autofill-note__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #075c37;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 10px;
}

.pf-auth-clean-autofill-note__icon .pf-icon {
  width: 16px;
  height: 16px;
}

.pf-auth-clean-autofill-note[data-state="listening"] {
  color: #31543d;
  background: #f0fdf4;
  border-color: #c8eed3;
}

.pf-auth-clean-autofill-note[data-state="success"] {
  color: #166534;
  background: #ecfdf3;
  border-color: #a7e8bb;
}

.pf-auth-clean-autofill-note[data-state="fallback"] {
  color: #667085;
  background: #f8fafc;
  border-color: #e5eaf1;
}

.pf-auth-clean-bottom {
  width: min(100%, 430px) !important;
  margin-top: 2px !important;
}

.pf-auth-clean-bottom .pf-auth-clean-home-link,
.pf-auth-clean-bottom .pf-auth-clean-home-link:visited {
  width: 100% !important;
  min-height: 58px !important;
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 11px;
  padding: 9px 11px !important;
  color: #1f2937 !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(210, 221, 213, 0.92) !important;
  border-radius: 17px !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: right;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.pf-auth-clean-bottom .pf-auth-clean-home-link:hover,
.pf-auth-clean-bottom .pf-auth-clean-home-link:focus-visible {
  color: #111827 !important;
  background: #ffffff !important;
  border-color: rgba(34, 197, 94, 0.48) !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1), 0 0 0 4px rgba(34, 197, 94, 0.08) !important;
  transform: translateY(-2px);
}

.pf-auth-clean-home-link__icon,
.pf-auth-clean-home-link__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.pf-auth-clean-home-link__icon {
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: linear-gradient(145deg, #0e7a4a, #075c37);
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.22);
}

.pf-auth-clean-home-link__icon .pf-icon {
  width: 18px;
  height: 18px;
}

.pf-auth-clean-home-link__copy {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.pf-auth-clean-home-link__copy strong {
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.pf-auth-clean-home-link__copy small {
  color: #7a8493;
  font-size: 11.5px;
  line-height: 1.6;
}

.pf-auth-clean-home-link__arrow {
  width: 30px;
  height: 30px;
  color: #075c37;
  background: #f0fdf4;
  transform: rotate(180deg);
}

.pf-auth-clean-home-link__arrow .pf-icon {
  width: 15px;
  height: 15px;
}

@media (max-width: 520px) {
  .pf-auth-clean-autofill-note {
    padding: 11px 12px;
    font-size: 13.5px;
  }

  .pf-auth-clean-bottom {
    width: 100% !important;
    padding-inline: 2px;
  }

  .pf-auth-clean-bottom .pf-auth-clean-home-link,
  .pf-auth-clean-bottom .pf-auth-clean-home-link:visited {
    min-height: 62px !important;
    border-radius: 18px !important;
  }

  .pf-auth-clean-home-link__copy strong {
    font-size: 15px;
  }

  .pf-auth-clean-home-link__copy small {
    font-size: 12.5px;
  }
}

/* Pelank Fit 2.32.4: guaranteed in-card site return button. */
.pf-auth-clean-card .pf-auth-clean-site-return {
  width: min(100%, 392px) !important;
  margin: 22px auto 0 !important;
  padding-top: 18px !important;
  border-top: 1px solid #e7ece8 !important;
}

.pf-auth-clean-card .pf-auth-clean-site-return__button,
.pf-auth-clean-card .pf-auth-clean-site-return__button:visited {
  width: 100% !important;
  min-height: 64px !important;
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) 34px !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 12px !important;
  margin: 0 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #111827 0%, #171717 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18) !important;
  text-decoration: none !important;
  text-align: right !important;
  overflow: hidden !important;
  position: relative !important;
  isolation: isolate !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease !important;
}

.pf-auth-clean-card .pf-auth-clean-site-return__button::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  background: radial-gradient(circle at 12% 50%, rgba(34, 197, 94, 0.2), transparent 38%) !important;
  pointer-events: none !important;
}

.pf-auth-clean-card .pf-auth-clean-site-return__button:hover,
.pf-auth-clean-card .pf-auth-clean-site-return__button:focus-visible {
  color: #ffffff !important;
  border-color: rgba(34, 197, 94, 0.52) !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.24), 0 0 0 4px rgba(34, 197, 94, 0.11) !important;
  transform: translateY(-2px) !important;
  outline: none !important;
}

.pf-auth-clean-card .pf-auth-clean-site-return__icon,
.pf-auth-clean-card .pf-auth-clean-site-return__arrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
}

.pf-auth-clean-card .pf-auth-clean-site-return__icon {
  width: 42px !important;
  height: 42px !important;
  color: #07140b !important;
  background: linear-gradient(145deg, #4ade80, #0e7a4a) !important;
  border-radius: 14px !important;
  box-shadow: 0 9px 22px rgba(34, 197, 94, 0.28) !important;
}

.pf-auth-clean-card .pf-auth-clean-site-return__icon .pf-icon {
  width: 20px !important;
  height: 20px !important;
  stroke-width: 2.2 !important;
}

.pf-auth-clean-card .pf-auth-clean-site-return__text {
  min-width: 0 !important;
  display: grid !important;
  gap: 1px !important;
}

.pf-auth-clean-card .pf-auth-clean-site-return__text strong {
  display: block !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.55 !important;
}

.pf-auth-clean-card .pf-auth-clean-site-return__text small {
  display: block !important;
  margin: 0 !important;
  color: #aeb8c6 !important;
  font-size: 12px !important;
  font-weight: 650 !important;
  line-height: 1.6 !important;
}

.pf-auth-clean-card .pf-auth-clean-site-return__arrow {
  width: 34px !important;
  height: 34px !important;
  color: #4ade80 !important;
  background: rgba(34, 197, 94, 0.12) !important;
  border: 1px solid rgba(74, 222, 128, 0.16) !important;
  border-radius: 12px !important;
  transform: rotate(180deg) !important;
  transition: transform 0.18s ease, background-color 0.18s ease !important;
}

.pf-auth-clean-card .pf-auth-clean-site-return__button:hover .pf-auth-clean-site-return__arrow,
.pf-auth-clean-card .pf-auth-clean-site-return__button:focus-visible .pf-auth-clean-site-return__arrow {
  background: rgba(34, 197, 94, 0.2) !important;
  transform: rotate(180deg) translateX(2px) !important;
}

.pf-auth-clean-card .pf-auth-clean-site-return__arrow .pf-icon {
  width: 16px !important;
  height: 16px !important;
}

@media (max-width: 520px) {
  .pf-auth-clean-card .pf-auth-clean-site-return {
    margin-top: 20px !important;
    padding-top: 16px !important;
  }

  .pf-auth-clean-card .pf-auth-clean-site-return__button,
  .pf-auth-clean-card .pf-auth-clean-site-return__button:visited {
    min-height: 68px !important;
    grid-template-columns: 44px minmax(0, 1fr) 36px !important;
    gap: 12px !important;
    padding: 11px 12px !important;
    border-radius: 19px !important;
  }

  .pf-auth-clean-card .pf-auth-clean-site-return__icon {
    width: 44px !important;
    height: 44px !important;
  }

  .pf-auth-clean-card .pf-auth-clean-site-return__text strong {
    font-size: 16px !important;
  }

  .pf-auth-clean-card .pf-auth-clean-site-return__text small {
    font-size: 13px !important;
  }
}

/* OTP role choice: one verified mobile can own athlete and approved coach accounts. */
.pf-auth-role-choice {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.pf-auth-role-card {
  width: 100%;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 14px;
  padding: 16px;
  text-align: right;
  color: #172033;
  background: #fff;
  border: 1px solid #e4e9f1;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.pf-auth-role-card:hover,
.pf-auth-role-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, .58);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .11);
  outline: none;
}

.pf-auth-role-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #15803d;
  background: #ecfdf3;
  border-radius: 16px;
}

.pf-auth-role-card--coach .pf-auth-role-card__icon {
  color: #fff;
  background: linear-gradient(135deg, #075c37, #14532d);
}

.pf-auth-role-card__icon .pf-icon {
  width: 23px;
  height: 23px;
}

.pf-auth-role-card > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.pf-auth-role-card strong,
.pf-auth-role-card small,
.pf-auth-role-card em {
  display: block;
  margin: 0;
  font-style: normal;
}

.pf-auth-role-card strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.65;
}

.pf-auth-role-card small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.65;
}

.pf-auth-role-card em {
  color: #15803d;
  font-size: 11px;
  font-weight: 800;
}

.pf-auth-role-card > i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #075c37;
  background: #f0fdf4;
  border-radius: 10px;
  font-style: normal;
}

@media (max-width: 520px) {
  .pf-auth-role-card {
    grid-template-columns: 44px minmax(0, 1fr) 28px;
    gap: 11px;
    padding: 14px 12px;
    border-radius: 17px;
  }
  .pf-auth-role-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}

/* Pelank Fit 2.34.1 — brand-aligned dual-workspace choice. */
.pf-auth-clean-screen--stage-role {
  --pf-role-green: #0e7a4a;
  --pf-role-green-dark: #11833c;
  --pf-role-ink: #0a120d;
  --pf-role-surface: #f7faf8;
  --pf-role-line: rgba(11, 34, 20, .11);
  background:
    radial-gradient(circle at 15% 15%, rgba(34, 197, 94, .12), transparent 27%),
    linear-gradient(145deg, #eef6f0 0%, #f8faf8 48%, #edf4ef 100%) !important;
}

.pf-auth-clean-screen--stage-role .pf-auth-clean-shell {
  overflow: hidden;
  border: 1px solid rgba(11, 34, 20, .09);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(8, 28, 16, .14);
}

.pf-auth-clean-screen--stage-role .pf-auth-clean-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 40%, rgba(56, 229, 112, .23), transparent 31%),
    linear-gradient(155deg, #06110a 0%, #0b2112 55%, #0b3017 100%) !important;
}

.pf-auth-clean-screen--stage-role .pf-auth-clean-visual::before {
  content: "FIT";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -54%);
  color: rgba(255, 255, 255, .045);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 1000;
  letter-spacing: -.08em;
  line-height: 1;
}

.pf-auth-clean-screen--stage-role .pf-auth-clean-visual::after {
  content: "PE LANK";
  position: absolute;
  right: 46px;
  bottom: 45px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .32em;
  opacity: .82;
}

.pf-auth-clean-screen--stage-role .pf-auth-clean-illustration {
  width: min(330px, 72%);
  aspect-ratio: 1;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(34, 197, 94, .18) 0 24%, transparent 25%),
    repeating-radial-gradient(circle at center, transparent 0 31px, rgba(255, 255, 255, .075) 32px 33px);
  box-shadow: inset 0 0 80px rgba(34, 197, 94, .08);
}

.pf-auth-clean-screen--stage-role .pf-auth-clean-illustration > * {
  display: none !important;
}

.pf-auth-clean-screen--stage-role .pf-auth-clean-illustration::before,
.pf-auth-clean-screen--stage-role .pf-auth-clean-illustration::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.pf-auth-clean-screen--stage-role .pf-auth-clean-illustration::before {
  width: 118px;
  height: 118px;
  border: 1px solid rgba(112, 239, 150, .46);
  background: linear-gradient(145deg, rgba(34, 197, 94, .28), rgba(34, 197, 94, .05));
  box-shadow: 0 0 65px rgba(34, 197, 94, .22);
}

.pf-auth-clean-screen--stage-role .pf-auth-clean-illustration::after {
  width: 22px;
  height: 22px;
  background: #50e47e;
  box-shadow: -47px 12px 0 -5px rgba(80, 228, 126, .6), 45px -19px 0 -7px rgba(80, 228, 126, .48);
}

.pf-auth-clean-screen--stage-role .pf-auth-clean-card {
  padding-top: 42px !important;
  padding-bottom: 38px !important;
}

.pf-auth-clean-screen--stage-role .pf-auth-clean-logo-mark {
  background: linear-gradient(145deg, #102418, #06110a) !important;
  color: #62e98a !important;
  box-shadow: 0 15px 34px rgba(7, 30, 15, .2) !important;
}

.pf-auth-clean-screen--stage-role .pf-auth-clean-card h1 {
  color: var(--pf-role-ink) !important;
  font-size: clamp(25px, 3vw, 34px) !important;
  letter-spacing: -.03em;
}

.pf-auth-clean-screen--stage-role .pf-auth-clean-subtitle {
  max-width: 490px;
  color: #617068 !important;
  line-height: 2 !important;
}

.pf-auth-role-intro {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 4px;
  padding: 13px 14px;
  border: 1px solid #dce9e0;
  border-radius: 18px;
  background: #f4faf6;
}

.pf-auth-role-intro > span {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #dcf8e5;
  color: #12813b;
}

.pf-auth-role-intro svg {
  width: 19px;
  height: 19px;
}

.pf-auth-role-intro div,
.pf-auth-role-intro strong,
.pf-auth-role-intro small {
  display: block;
}

.pf-auth-role-intro strong {
  color: #132319;
  font-size: 12px;
  font-weight: 950;
}

.pf-auth-role-intro small {
  margin-top: 3px;
  color: #68766e;
  font-size: 10px;
  line-height: 1.75;
}

.pf-auth-clean-screen--stage-role .pf-auth-role-choice {
  gap: 11px;
  margin-top: 14px;
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card {
  min-height: 112px;
  grid-template-columns: 54px minmax(0, 1fr) 34px;
  gap: 14px;
  padding: 15px;
  border: 1px solid var(--pf-role-line);
  border-radius: 22px;
  box-shadow: none;
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card--athlete {
  color: #132319;
  background: #fff;
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card--coach {
  color: #fff;
  border-color: rgba(255, 255, 255, .08);
  background:
    radial-gradient(circle at 12% 15%, rgba(57, 225, 108, .19), transparent 28%),
    linear-gradient(145deg, #0b1710, #102b18);
  box-shadow: 0 16px 36px rgba(6, 27, 13, .14);
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card:hover,
.pf-auth-clean-screen--stage-role .pf-auth-role-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, .72);
  box-shadow: 0 17px 35px rgba(10, 36, 19, .13);
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #e8f9ed;
  color: #11813a;
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card--coach .pf-auth-role-card__icon {
  color: #06130a;
  background: #4ee17a;
  box-shadow: 0 10px 24px rgba(34, 197, 94, .24);
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card > span:nth-child(2) {
  gap: 2px;
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card b {
  display: inline-flex;
  width: max-content;
  margin-bottom: 2px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #16833d;
  background: #eaf8ee;
  font-size: 9px;
  font-weight: 950;
  line-height: 1.45;
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card--coach b {
  color: #6bea91;
  background: rgba(70, 223, 114, .11);
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card strong {
  color: inherit;
  font-size: 15px;
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card small {
  color: #708078;
  font-size: 11px;
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card--coach small {
  color: #a6b8ab;
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card em {
  color: #16823d;
  font-size: 10px;
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card--coach em {
  color: #70e895;
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card > i {
  color: #126f34;
  background: #edf9f0;
}

.pf-auth-clean-screen--stage-role .pf-auth-role-card--coach > i {
  color: #06130a;
  background: #4ee17a;
}

.pf-auth-role-footnote {
  margin: 12px 0 0;
  color: #7a8880;
  font-size: 10px;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 760px) {
  .pf-auth-clean-screen--stage-role .pf-auth-clean-visual {
    display: none !important;
  }
  .pf-auth-clean-screen--stage-role .pf-auth-clean-shell {
    border-radius: 26px;
  }
  .pf-auth-clean-screen--stage-role .pf-auth-clean-card {
    padding: 30px 18px 24px !important;
  }
}

@media (max-width: 520px) {
  .pf-auth-clean-screen--stage-role .pf-auth-role-card {
    min-height: 104px;
    grid-template-columns: 46px minmax(0, 1fr) 28px;
    gap: 10px;
    padding: 13px 11px;
    border-radius: 18px;
  }
  .pf-auth-clean-screen--stage-role .pf-auth-role-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }
  .pf-auth-clean-screen--stage-role .pf-auth-role-card strong {
    font-size: 13px;
  }
  .pf-auth-clean-screen--stage-role .pf-auth-role-card small {
    font-size: 10px;
  }
}
