/* Page visual extension point for signup.html.
   Keep page-specific CSS here and bump the ?v= value in the HTML when edited. */
html[data-pl-route="register"] .pl-reg-split {
  display: grid !important;
  grid-template-columns: minmax(300px, 430px) minmax(360px, 520px) !important;
  align-items: center !important;
  gap: 72px !important;
  max-width: 1080px !important;
  width: 100% !important;
  margin-left: clamp(-220px, -12vw, -80px) !important;
}

html[data-pl-route="register"] .pl-login-features {
  display: flex;
  flex-direction: column;
  gap: 26px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

html[data-pl-route="register"] .pl-reg-split > :not(.pl-login-features) {
  grid-column: 2;
}

html[data-pl-route="register"] .pl-reg-split > .pl-login-features {
  grid-column: 1;
  grid-row: 1 / span 2;
}

html[data-pl-route="register"] .pl-reg-split > div:not(.pl-login-features):not(:has(form)) {
  display: none !important;
}

html[data-pl-route="register"] .pl-login-intro {
  margin-bottom: 2px;
}

html[data-pl-route="register"] .pl-login-intro h2 {
  color: var(--text-primary);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 10px;
}

html[data-pl-route="register"] .pl-login-intro p {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0;
}

html[data-pl-route="register"] .pl-login-feature {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
}

html[data-pl-route="register"] .pl-login-feature__icon {
  align-items: center;
  border: 1px solid rgba(245, 180, 0, .36);
  border-radius: 10px;
  color: var(--accent-color);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  height: 22px;
  justify-content: center;
  line-height: 1;
  width: 22px;
}

html[data-pl-route="register"] .pl-login-feature strong {
  color: var(--text-primary);
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

html[data-pl-route="register"] .pl-login-feature p {
  margin: 0;
}

html[data-pl-route="register"] .pl-reg-split form {
  width: 100%;
}

@media (max-width: 900px) {
  html[data-pl-route="register"] .pl-reg-split {
    display: block !important;
    margin-left: 0 !important;
    max-width: 520px !important;
  }

  html[data-pl-route="register"] .pl-login-features {
    display: none;
  }
}
