body.signup-page {
  background: #ffffff;
  color: #2d2343;
}

.signup-page .hero__signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.signup-page .hero__menu a {
  color: #ffffff;
}

.signup-page .hero__nav {
  justify-content: flex-start;
}

.signup-page .hero__menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.signup-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100dvh;
  background: url(../images/sign-up-beta.png) center top / 100% 100% no-repeat;
}

.signup-hero::before {
  content: "Beta";
  position: absolute;
  left: 40px;
  bottom: 24px;
  font-size: 472px;
  font-style: normal;
  font-weight: 600;
  line-height: 92%;
  letter-spacing: -9.425px;
  opacity: 0.4;
  background: linear-gradient(90deg, #FFEBA4 0%, #FFFBC2 39.42%, #FFFFFE 72.47%, #FEC668 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.signup-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(38vw, 720px);
  max-width: 640px;
  height: 100%;
  background: url(../images/sign-up-beta-hand.png) right bottom / contain no-repeat;
  pointer-events: none;
}

.signup-hero__panel {
  position: relative;
  z-index: 1;
  width: 92%;
  margin: 0 auto;
  padding: 72px 0 120px;
}

.signup-hero__content {
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  min-height: calc(100dvh - 40px);
  margin: 20px;
  border-radius: 20px;
  border: 1px solid #E5D3FD;
  box-sizing: border-box;
}

.signup-hero__copy {
  max-width: 800px;
  color: #ffffff;
}

.signup-hero__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: clamp(62px, 8vw, 124px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.signup-hero__title em {
  font-style: normal;
  color: #ffcf19;
}

.signup-hero__lead {
  margin-top: 18px;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.signup-hero__desc {
  max-width: 560px;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.signup-shell {
  padding: 18px 12px 0;
}

.signup-form {
  margin: 0 auto;
}

.signup-form__panel {
  padding: 40px 22px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fbf1e2 0%, #f9eddc 100%);
  box-shadow: 0 20px 60px rgba(79, 56, 20, 0.08);
}

.signup-form__header {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 26px;
  text-align: center;
}

.signup-form__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid #d4cadc;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  color: #8a809c;
  text-transform: uppercase;
}

.signup-form__header h2 {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #2d2343;
}

.signup-form__header p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.65;
  color: #84789d;
}

.signup-group {
  display: grid;
  gap: 30px;
  border: 0;
  padding: 0;
  margin: 0 0 30px;
}

.signup-group legend {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: #171315;
}

.signup-group__subtext {
  font-size: 16px;
  line-height: 1.45;
  color: #5f5852;
}

.signup-grid {
  display: grid;
  gap: 14px 16px;
}

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

.signup-grid--three {
  grid-template-columns: 1fr 1fr 1fr;
}

.signup-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signup-grid--full {
  grid-template-columns: 1fr;
}

.signup-field {
  display: grid;
  gap: 6px;
  align-content: start;
}

.signup-field__label {
  font-size: 16px;
  line-height: 1.2;
  color: #7a6c60;
}

.signup-field input,
.signup-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #f1d6a7;
  border-radius: 14px;
  background: #ffe7bc;
  color: #2d2343;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 1;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.signup-field input::placeholder {
  color: #9a896f;
}

.signup-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8e6d44 50%),
    linear-gradient(135deg, #8e6d44 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.signup-field__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.signup-field input:focus,
.signup-field select:focus {
  border-color: #ff9a1f;
  box-shadow: 0 0 0 3px rgba(255, 154, 31, 0.18);
}

.signup-field input:disabled,
.signup-field select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.signup-field__hint {
  font-size: 12px;
  line-height: 1.4;
  color: #6f675d;
}

.signup-field__count {
  flex: 0 0 auto;
  font-size: 11px;
  line-height: 1;
  color: #b8ada0;
}

.signup-choice-field {
  position: relative;
  display: grid;
  gap: 6px;
  align-content: start;
}

.signup-choice-native {
  display: none;
}

.signup-choice-field__title {
  font-size: 16px;
  line-height: 1.2;
  color: #7a6c60;
}

.signup-choice-trigger {
  position: relative;
  width: 100%;
  min-height: 48px;
  padding: 0 40px 0 18px;
  border: 1px solid #f1d6a7;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffe9c3 0%, #ffe2b1 100%);
  color: #6f5f51;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.signup-choice-trigger:hover {
  transform: translateY(-1px);
  border-color: #e8c68e;
}

.signup-choice-trigger::before,
.signup-choice-trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 6px;
  border-bottom: 1.5px solid #8e6d44;
}

.signup-choice-trigger::before {
  transform: translateY(-60%) rotate(45deg);
  right: 22px;
}

.signup-choice-trigger::after {
  transform: translateY(-60%) rotate(-45deg);
}

.signup-choice-trigger__text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.signup-choice-panel {
  min-height: 48px;
  padding: 12px;
  border: 1px solid #edd3ac;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff8ed 0%, #fff1de 100%);
}

.signup-choice-panel--dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 360px;
  overflow: auto;
  box-shadow: 0 20px 44px rgba(45, 35, 67, 0.16);
}

.signup-choice-panel--empty {
  display: flex;
  align-items: center;
  min-height: 48px;
  color: #9a896f;
  font-size: 14px;
}

.signup-choice-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(122, 108, 96, 0.14);
}

.signup-choice-toolbar__summary {
  min-width: 0;
  font-size: 12px;
  line-height: 1.35;
  color: #7b6a5d;
}

.signup-choice-toolbar__clear {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #8a5f1e;
  font-family: 'Urbanist', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.signup-choice-list {
  display: grid;
  gap: 10px;
}

.signup-choice-search {
  display: block;
}

.signup-choice-search__input {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(241, 214, 167, 0.96);
  border-radius: 14px;
  background: rgba(255, 231, 188, 0.84);
  color: #2d2343;
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  line-height: 1;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.signup-choice-search__input::placeholder {
  color: #9a896f;
}

.signup-choice-search__input:focus {
  border-color: #ff9a1f;
  box-shadow: 0 0 0 3px rgba(255, 154, 31, 0.18);
  background: #fff0cf;
}

.signup-choice-group + .signup-choice-group,
.signup-choice-subgroup + .signup-choice-subgroup {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(122, 108, 96, 0.2);
}

.signup-choice-group__header,
.signup-choice-subgroup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.signup-choice-group__title,
.signup-choice-subgroup__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d4340;
}

.signup-choice-group__count,
.signup-choice-subgroup__count {
  flex: 0 0 auto;
  min-width: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 147, 0, 0.12);
  color: #8a5f1e;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.signup-choice-alert {
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(212, 91, 75, 0.3);
  border-radius: 12px;
  background: rgba(212, 91, 75, 0.08);
  color: #8b2e22;
  font-size: 13px;
  line-height: 1.4;
}

.signup-choice-group.is-missing,
.signup-choice-subgroup.is-missing {
  padding: 10px;
  border: 1px solid rgba(212, 91, 75, 0.28);
  border-radius: 14px;
  background: rgba(247, 162, 151, 0.22);
}

.signup-choice-group.is-missing .signup-choice-group__title,
.signup-choice-subgroup.is-missing .signup-choice-subgroup__title {
  color: #8b2e22;
}

.signup-choice-group.is-missing .signup-choice-group__count,
.signup-choice-subgroup.is-missing .signup-choice-subgroup__count {
  background: rgba(212, 91, 75, 0.16);
  color: #8b2e22;
}

.signup-choice-subgroup {
  margin-left: 4px;
}

.signup-choice-checklist {
  display: grid;
  gap: 8px;
}

.signup-choice-option {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(138, 128, 118, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.signup-choice-option:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 154, 31, 0.38);
  box-shadow: 0 10px 18px rgba(77, 67, 64, 0.08);
}

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

.signup-choice-option__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #4d4340;
}

.signup-choice-option__meta {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.35;
  color: #8d7d6f;
}

.signup-choice-option__check {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(138, 128, 118, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.signup-choice-option__check::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 180ms ease, transform 180ms ease;
}

.signup-choice-option input:checked + .signup-choice-option__body + .signup-choice-option__check {
  border-color: #ff9300;
  background: linear-gradient(180deg, #ffae38 0%, #ff9300 100%);
  transform: scale(1.02);
}

.signup-choice-option input:checked + .signup-choice-option__body + .signup-choice-option__check::after {
  opacity: 1;
  transform: scale(1);
}

.signup-choice-option:has(input:checked) {
  border-color: rgba(255, 147, 0, 0.46);
  background: linear-gradient(180deg, rgba(255, 239, 213, 0.98) 0%, rgba(255, 227, 181, 0.96) 100%);
  box-shadow: 0 10px 24px rgba(255, 147, 0, 0.12);
}

.signup-choice-option:has(input:checked) .signup-choice-option__label {
  color: #3f332f;
}

.signup-choice-field.is-invalid .signup-choice-panel {
  background: #f7a297;
  border-color: #d45b4b;
  box-shadow: 0 0 0 3px rgba(212, 91, 75, 0.1);
}

.signup-choice-field.is-invalid .signup-choice-trigger {
  background: #f7a297;
  border-color: #d45b4b;
  box-shadow: 0 0 0 3px rgba(212, 91, 75, 0.1);
}

.signup-choice-field.is-open .signup-choice-trigger {
  border-color: #ff9a1f;
  box-shadow: 0 0 0 3px rgba(255, 154, 31, 0.18);
}

.signup-upload {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto minmax(180px, 1fr);
  align-items: center;
  min-height: 54px;
  max-width: 420px;
  width: 100%;
  border: 1px solid #d7dce7;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.signup-upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.signup-upload__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 100%;
  padding: 0 16px;
  background: #f4f5f8;
  border-right: 1px solid #d7dce7;
  font-size: 14px;
  font-weight: 500;
  color: #5a5f69;
  cursor: pointer;
}

.signup-upload__name {
  padding: 0 14px;
  font-size: 14px;
  line-height: 1.4;
  color: #726b65;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.signup-upload__meta {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #8a8076;
}

.signup-checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.signup-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.35;
  color: #4d4340;
}

.signup-check input {
  width: 16px;
  height: 16px;
  accent-color: #ff9300;
}

.signup-check--single {
  align-items: flex-start;
}

.signup-group--checks {
  margin-bottom: 24px;
}

.signup-captcha__error {
  margin-top: 8px;
  font-size: 13px;
  color: #b8442d;
}

.signup-form__actions {
  padding: 14px 0 22px;
}

.signup-form__submit {
  position: relative;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9705 0%, #ff8a00 100%);
  color: #ffffff;
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.signup-form__submit:hover {
  opacity: 0.96;
  transform: translateY(-1px);
}

.signup-form__submit:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.signup-form__submit.is-loading {
  cursor: not-allowed;
}

.signup-form__submit.is-loading span {
  opacity: 0;
}

.signup-form__submit.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: gygler-spin 0.7s linear infinite;
}

@keyframes gygler-spin {
  to { transform: rotate(360deg); }
}

.signup-form__status {
  min-height: 22px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #7e728b;
}

.signup-form__status.is-error {
  color: #b8442d;
}

.signup-form__status.is-success {
  color: #1f7a3b;
}

.signup-form__status.is-info {
  color: #6b6080;
}

.signup-field.is-invalid input,
.signup-field.is-invalid select,
.signup-upload.is-invalid {
  background: #f7a297;
  border-color: #d45b4b;
  box-shadow: 0 0 0 3px rgba(212, 91, 75, 0.1);
}

.signup-check.is-invalid span {
  color: #b8442d;
}

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
}

.signup-modal[hidden] {
  display: none;
}

.signup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 16, 12, 0.56);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.signup-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 32px 30px 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 178, 61, 0.22), transparent 34%),
    linear-gradient(180deg, #fff9f0 0%, #fff2dd 100%);
  box-shadow: 0 28px 80px rgba(32, 18, 8, 0.28);
  border: 1px solid rgba(255, 170, 67, 0.2);
  text-align: center;
}

.signup-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #5d4938;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.signup-modal__close:hover {
  transform: scale(1.04);
  background: #ffffff;
}

.signup-modal__icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffb345 0%, #ff880b 100%);
  box-shadow: 0 16px 34px rgba(255, 136, 11, 0.24);
}

.signup-modal__icon svg {
  width: 42px;
  height: 42px;
}

.signup-modal__icon circle {
  fill: rgba(255, 255, 255, 0.18);
}

.signup-modal__icon path {
  fill: #ffffff;
}

.signup-modal__title {
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #2d2343;
}

.signup-modal__message {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.55;
  color: #6c5c52;
}

.signup-modal__button {
  min-width: 180px;
  min-height: 54px;
  margin-top: 24px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9705 0%, #ff8a00 100%);
  color: #ffffff;
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.signup-modal__button:hover {
  opacity: 0.96;
  transform: translateY(-1px);
}

@media (max-width: 1200px) {
  .signup-hero {
    min-height: 100dvh;
  }

  .signup-hero__panel {
    width: calc(100% - 40px);
    padding-bottom: 96px;
  }

  .signup-grid--three {
    grid-template-columns: 1fr 1fr;
  }

  .signup-grid--three .signup-field:last-child {
    grid-column: 1 / -1;
  }

  .signup-grid--four {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .signup-hero {
    min-height: 100dvh;
    background-position: 68% top;
  }

  .signup-hero__panel {
    padding-top: 54px;
  }

  .signup-hero__copy {
    max-width: 520px;
  }

  .signup-hero__title {
    font-size: clamp(52px, 8vw, 84px);
  }

  .signup-grid--two,
  .signup-grid--three {
    grid-template-columns: 1fr;
  }

  .signup-grid--three .signup-field:last-child {
    grid-column: auto;
  }

  .signup-grid--four {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .signup-grid--four {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .signup-hero {
    min-height: 70dvh;
    background-position: 62% top;
  }

  .signup-hero::before {
    content: "Beta";
    position: absolute;
    left: 40px;
    bottom: 24px;
    font-size: 165px;
    font-style: normal;
    font-weight: 600;
    line-height: 92%;
    letter-spacing: -9.425px;
    opacity: 0.4;
    background: linear-gradient(90deg, #FFEBA4 0%, #FFFBC2 39.42%, #FFFFFE 72.47%, #FEC668 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: soft-light;
    pointer-events: none;
  }

  .signup-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(68vw, 720px);
    max-width: 640px;
    height: 100%;
    background: none;
    pointer-events: none;
  }

  .signup-hero__content {
    position: relative;
    z-index: 1;
    width: calc(100% - 40px);
    min-height: calc(70dvh - 40px);
    margin: 20px;
    border-radius: 20px;
    border: 1px solid #E5D3FD;
    box-sizing: border-box;
  }

  .signup-hero__panel {
    width: calc(100% - 24px);
    padding: 20px 0 40px;
  }

  .signup-hero__copy {
    max-width: 360px;
  }

  .signup-hero__title {
    font-size: clamp(42px, 15vw, 72px);
    line-height: 0.86;
  }

  .signup-hero__lead {
    margin-top: 12px;
    font-size: 18px;
  }

  .signup-hero__desc,
  .signup-form__header p {
    font-size: 16px;
  }

  .signup-hero__desc {
    max-width: 340px;
    margin-top: 14px;
    line-height: 1.4;
  }

  .signup-form__panel {
    padding: 28px 16px 18px;
  }

  .signup-form__header h2 {
    font-size: 34px;
  }

  .signup-group legend {
    font-size: 24px;
  }

  .signup-field input,
  .signup-field select {
    min-height: 56px;
    border-radius: 12px;
  }

  .signup-field__meta {
    gap: 10px;
  }

  .signup-upload {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .signup-upload__button {
    min-height: 46px;
    border-right: 0;
    border-bottom: 1px solid #d7dce7;
  }

  .signup-upload__name {
    padding: 10px 14px;
  }

  .signup-form__submit {
    font-size: 20px;
  }

  .signup-modal {
    padding: 18px;
  }

  .signup-modal__dialog {
    padding: 28px 20px 22px;
    border-radius: 24px;
  }

  .signup-modal__message {
    font-size: 16px;
  }

  .signup-modal__button {
    width: 100%;
  }
}
