/* Registration shares the introduction's palette, type and quiet spacing. */
.hello-app .hello-details-form {
  width: min(100%, 560px);
  margin: 30px auto 0;
}
.hello-step-register .hello-details-form { max-width: 440px; }
.hello-details-form .hello-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}
.hello-step-identity .hello-fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hello-details-form .hello-field {
  display: grid;
  min-width: 0;
  gap: 9px;
  margin: 0;
  color: var(--hello-text);
  text-align: left;
}
.hello-field > span {
  padding-inline: 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
body.hello-page .hello-details-form .hello-field input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  margin: 0;
  padding: 15px 20px;
  border: 1px solid var(--hello-line);
  border-radius: 999px;
  color: var(--hello-text);
  -webkit-text-fill-color: var(--hello-text);
  background: var(--hello-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  caret-color: var(--hello-text);
  transition: border-color .18s ease;
}
.hello-details-form .hello-field input::placeholder {
  color: var(--hello-muted);
  -webkit-text-fill-color: var(--hello-muted);
  opacity: .75;
}
body.hello-page .hello-details-form .hello-field input:focus {
  border-color: var(--hello-accent);
  outline: none;
}
body.hello-page .hello-details-form .hello-field input:focus-visible {
  outline: 2px solid var(--hello-accent);
  outline-offset: 3px;
}
body.hello-page .hello-details-form .hello-field input[aria-invalid="true"] {
  border-color: #e17c85;
}
body.hello-page .hello-details-form .hello-field input:-webkit-autofill {
  -webkit-text-fill-color: var(--hello-text);
  -webkit-box-shadow: 0 0 0 1000px var(--hello-bg) inset;
  caret-color: var(--hello-text);
}
.hello-details-form .hello-actions { margin-top: 28px; }
body.hello-page .hello-details-form .hello-primary { border-radius: 999px; }
.hello-form-note {
  max-width: 400px;
  margin: 23px auto 0;
  color: var(--hello-muted);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
  text-wrap: pretty;
}
.hello-form-note a,
.hello-login-link {
  color: var(--hello-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.hello-login-link {
  display: inline-block;
  margin-top: 13px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.hello-form-note a:focus-visible,
.hello-login-link:focus-visible { outline: 2px solid var(--hello-accent); outline-offset: 4px; }
html[data-cy-color-scheme="light"] body.hello-page .hello-details-form .hello-field input {
  color: var(--hello-text);
  background: var(--hello-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}
@media (max-width: 600px) {
  .hello-app .hello-details-form { max-width: 400px; margin-top: 26px; }
  .hello-step-identity .hello-fields { grid-template-columns: minmax(0, 1fr); }
  .hello-details-form .hello-fields { gap: 18px; }
  .hello-details-form .hello-actions { margin-top: 26px; }
  .hello-form-note { margin-top: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .hello-details-form .hello-field input { transition: none; }
}

.hello-title [data-hello-personal-name] { overflow-wrap: anywhere; }
