/* Registration wizard — WANNAYOU */

.page-register {
  position: fixed;
  inset: 0;
  z-index: 900;
  overflow: hidden;
  height: 100dvh;
  max-height: 100dvh;
  background: #050505;
}

.reg-page {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  overscroll-behavior: contain;
  padding: 24px 20px;
  box-sizing: border-box;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(88, 0, 0, 0.22), transparent 60%),
    #050505;
}

.reg-page__center {
  flex: 0 0 auto;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.reg-wizard__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 26px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.reg-wizard__close:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.reg-wizard {
  width: 100%;
}

.reg-wizard__card {
  --reg-field-legend-bg: #181010;
  background: linear-gradient(165deg, rgba(28, 10, 10, 0.98) 0%, rgba(12, 8, 8, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  padding: 28px 28px 32px;
  position: relative;
  overflow: visible;
}

.reg-wizard__card--scroll {
  display: flex;
  flex-direction: column;
  max-height: min(90vh, 720px);
}

.reg-wizard__card--scroll .reg-wizard__form {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}

.reg-wizard__scroll {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(163, 0, 0, 0.75) rgba(255, 255, 255, 0.06);
  padding-right: 4px;
  padding-bottom: 8px;
}

.reg-wizard__scroll::-webkit-scrollbar {
  width: 7px;
}

.reg-wizard__scroll::-webkit-scrollbar-track {
  margin: 4px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.reg-wizard__scroll::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(200, 48, 72, 0.85) 0%, rgba(111, 0, 0, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.reg-wizard__scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(232, 93, 111, 0.95) 0%, rgba(136, 0, 0, 1) 100%);
}

.reg-wizard__back {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}

.reg-wizard__back:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.reg-wizard__brand {
  display: block;
  width: 52px;
  height: auto;
  margin: 0 auto 20px;
}

.reg-wizard__meta {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.reg-wizard__progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 20px;
  overflow: hidden;
}

.reg-wizard__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #580000, #a30000);
  border-radius: 3px;
  transition: width 0.35s ease;
}

.reg-wizard__steps {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.reg-wizard__step {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.reg-wizard__step-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 6px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.25s ease;
}

.reg-wizard__step-label {
  display: block;
  font-size: 10px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.25s ease;
}

.reg-wizard__step.is-active .reg-wizard__step-dot {
  color: #fff;
  background: #580000;
  border-color: #7a1515;
  box-shadow: 0 0 12px rgba(88, 0, 0, 0.5);
}

.reg-wizard__step.is-active .reg-wizard__step-label {
  color: #ff8fa8;
}

.reg-wizard__step.is-done .reg-wizard__step-dot {
  color: #fff;
  background: rgba(88, 0, 0, 0.45);
  border-color: rgba(255, 21, 82, 0.35);
}

.reg-wizard__step.is-done .reg-wizard__step-label {
  color: rgba(255, 255, 255, 0.55);
}

.reg-wizard__title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.25;
}

.reg-wizard__subtitle {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.reg-wizard__alert {
  margin: 0 0 20px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 21, 82, 0.12);
  border: 1px solid rgba(255, 21, 82, 0.35);
  color: #ff9eb5;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.reg-wizard__alert div + div {
  margin-top: 4px;
}

.reg-wizard__alert--password {
  margin: 8px 0 0;
}

.reg-wizard__field {
  margin: 0 0 22px;
  padding: 20px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  min-width: 0;
}

.reg-wizard__field:last-of-type {
  margin-bottom: 0;
}

.reg-wizard__legend {
  display: block;
  width: max-content;
  max-width: calc(100% - 24px);
  padding: 0 16px;
  margin: -11px 0 14px 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
}

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

.reg-choice-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.reg-choice-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.reg-choice-card {
  position: relative;
  display: block;
  cursor: pointer;
  margin: 0;
}

.reg-choice-card__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.reg-choice-card__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.reg-choice-card__label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.25;
}

.reg-choice-card__input:focus-visible + .reg-choice-card__box {
  outline: 2px solid rgba(255, 21, 82, 0.6);
  outline-offset: 2px;
}

.reg-choice-card__input:checked + .reg-choice-card__box {
  border-color: #ff1552;
  background: rgba(88, 0, 0, 0.35);
  box-shadow: 0 0 0 1px rgba(88, 0, 0, 0.8), 0 8px 20px rgba(0, 0, 0, 0.35);
}

.reg-choice-card__input:checked + .reg-choice-card__box .reg-choice-card__label {
  color: #fff;
}

.reg-choice-card:hover .reg-choice-card__box {
  border-color: rgba(255, 255, 255, 0.28);
}

.reg-choice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reg-choice-list .reg-choice-card__box {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
}

.reg-choice-list .reg-choice-card__label {
  flex: 1;
  text-align: left;
  line-height: 1.35;
  display: flex;
  align-items: center;
  min-height: 18px;
}

.reg-choice-list .reg-choice-card__box::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s;
}

.reg-choice-list .reg-choice-card__input:checked + .reg-choice-card__box::before {
  border-color: #ff1552;
  background: radial-gradient(circle at center, #ff1552 40%, transparent 41%);
}

.reg-choice-list--checkbox .reg-choice-card__box::before {
  border-radius: 4px;
}

.reg-choice-list--checkbox .reg-choice-card__input:checked + .reg-choice-card__box::before {
  background: #ff1552;
  border-color: #ff1552;
  box-shadow: inset 0 0 0 3px rgba(18, 8, 8, 0.95);
}

.reg-choice-list--checkbox .reg-choice-card__label a {
  color: #ff8fa8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reg-choice-list--checkbox .reg-choice-card__label a:hover {
  color: #ffb3c4;
}

.reg-wizard__field--error .reg-choice-card__box {
  border-color: rgba(232, 93, 111, 0.85);
}

.reg-field {
  position: relative;
  margin-bottom: 18px;
}

.reg-field__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.reg-field__input,
.reg-field__textarea {
  width: 100%;
  padding: 12px 0 10px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.reg-field__input::placeholder,
.reg-field__textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.reg-field__input:focus,
.reg-field__textarea:focus {
  outline: none;
  border-bottom-color: #ff1552;
}

.reg-field__textarea {
  min-height: 96px;
  resize: vertical;
  padding-top: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(163, 0, 0, 0.75) rgba(255, 255, 255, 0.06);
  scrollbar-gutter: stable;
}

.reg-field__textarea::-webkit-scrollbar {
  width: 7px;
}

.reg-field__textarea::-webkit-scrollbar-track {
  margin: 4px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.reg-field__textarea::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(200, 48, 72, 0.9) 0%, rgba(111, 0, 0, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reg-field__textarea::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(232, 93, 111, 0.95) 0%, rgba(136, 0, 0, 1) 100%);
}

.reg-field--error .reg-field__input,
.reg-field--error .reg-field__textarea {
  border-bottom-color: #ff1552;
}

.reg-field__error {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #ff8fa8;
}

.reg-field__hint {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
}

.reg-field__hint.is-error {
  color: #ff8fa8;
}

.reg-field__hint.is-success {
  color: #7dcea0;
}

.reg-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.reg-field--geo {
  position: relative;
}

.reg-geo__suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 20;
  margin: 4px 0 0;
  padding: 6px 2px 6px 0;
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(163, 0, 0, 0.75) rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(18, 10, 10, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.reg-geo__suggestions::-webkit-scrollbar {
  width: 7px;
}

.reg-geo__suggestions::-webkit-scrollbar-track {
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.reg-geo__suggestions::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(200, 48, 72, 0.9) 0%, rgba(111, 0, 0, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reg-geo__suggestions::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(232, 93, 111, 0.95) 0%, rgba(136, 0, 0, 1) 100%);
}

.reg-geo__suggestions li button {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.reg-geo__suggestions li button:hover,
.reg-geo__suggestions li button:focus {
  background: rgba(88, 0, 0, 0.35);
  outline: none;
}

.reg-geo__input:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.reg-wizard__card--scroll .reg-wizard__actions {
  flex-shrink: 0;
  margin-top: 20px;
}

.reg-wizard__actions {
  margin-top: 28px;
}

.reg-wizard__submit {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #6f0000 0%, #580000 100%);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(88, 0, 0, 0.45);
}

.reg-wizard__submit:hover {
  background: linear-gradient(180deg, #850000 0%, #6a0000 100%);
  box-shadow: 0 6px 22px rgba(88, 0, 0, 0.55);
}

.reg-wizard__submit:active {
  transform: translateY(1px);
}

.reg-wizard__footer {
  margin-top: 20px;
  text-align: center;
}

.reg-wizard__footer-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.reg-wizard__footer a {
  font-size: 13px;
  color: #a30000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.reg-wizard__footer a:hover {
  color: #c73636;
}

.reg-wizard__footer strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.reg-wizard__req {
  color: #e85d6f;
}

.reg-wizard__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 20px 0;
}

.reg-picker {
  position: relative;
}

.reg-picker__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid rgba(232, 93, 111, 0.55);
  background: transparent;
  color: #fff;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.reg-picker__value {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.reg-picker__caret {
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.55);
  margin-left: 8px;
}

.reg-picker__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 40;
  margin: 0;
  padding: 6px 2px 6px 0;
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(163, 0, 0, 0.75) rgba(255, 255, 255, 0.06);
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.reg-picker__list::-webkit-scrollbar {
  width: 7px;
}

.reg-picker__list::-webkit-scrollbar-track {
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.reg-picker__list::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(200, 48, 72, 0.9) 0%, rgba(111, 0, 0, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reg-picker__list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(232, 93, 111, 0.95) 0%, rgba(136, 0, 0, 1) 100%);
}

.reg-picker__list button {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.reg-picker__list button:hover,
.reg-picker__list button[aria-selected='true'] {
  background: rgba(163, 0, 0, 0.35);
  color: #fff;
}

.reg-picker.is-open .reg-picker__btn {
  border-bottom-color: #e85d6f;
}

.reg-field__hint {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.reg-wizard__note,
.reg-wizard__hint {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 16px;
}

.reg-photo-visibility-hint {
  margin-top: 12px;
  margin-bottom: 0;
}

.reg-photo-upload {
  margin-top: 8px;
}

.reg-photo-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reg-photo-upload__zone {
  display: block;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.reg-photo-upload__pick {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reg-photo-upload.has-file .reg-photo-upload__pick {
  display: none;
}

.reg-photo-upload__zone:hover,
.reg-photo-upload.is-dragover .reg-photo-upload__zone {
  border-color: rgba(232, 93, 111, 0.7);
  background: rgba(88, 0, 0, 0.2);
  box-shadow: 0 0 0 1px rgba(163, 0, 0, 0.35);
}

.reg-photo-upload__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
}

.reg-photo-upload__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reg-photo-upload__title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.reg-photo-upload__hint,
.reg-photo-upload__name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.35;
}

.reg-photo-upload__name {
  color: #ff8fa8;
  word-break: break-all;
}

.reg-photo-upload__btn {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(163, 0, 0, 0.55), rgba(88, 0, 0, 0.75));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.reg-photo-upload__preview {
  display: block;
  width: 100%;
  max-height: 200px;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
}

.reg-photo-upload__preview[hidden] {
  display: none !important;
}

.reg-field--error .reg-photo-upload__zone {
  border-color: rgba(232, 93, 111, 0.85);
}

.datePage__status {
  color: #580000;
  margin: 0 0 16px;
  font-size: 15px;
}

.date-page-account-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 24px;
  align-items: start;
}

.date-page-account-row > .datePageItemFormBlockSection {
  max-width: none;
}

.date-page-account-row__city-label {
  margin-top: 12px;
  display: block;
}

.date-anketa-edit {
  width: 100%;
  margin: 8px 0 20px;
}

.date-anketa-edit .reg-wizard__card {
  max-width: 100%;
}

.date-anketa-edit .reg-wizard__card--scroll {
  max-height: none;
}

.datePageItemForm.reg-wizard__form {
  padding: 20px 24px 28px;
  max-width: 100%;
}

.datePageItemForm.reg-wizard__form .date-anketa-edit fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.datePageItemForm.reg-wizard__form .reg-wizard__field {
  margin-bottom: 18px;
}

.datePageItemForm.reg-wizard__form .reg-wizard__divider {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* Profile edit wizard (layouts/profile-edit.blade.php — scrollable page) */
html.profile-edit-flow .reg-wizard__card--profile-edit {
  max-height: none !important;
  overflow: visible;
}

.reg-wizard__card--profile-edit .reg-wizard__form {
  display: block;
}

.reg-wizard__card--profile-edit .reg-wizard__body {
  margin-bottom: 4px;
}

.reg-wizard__card--profile-edit .reg-wizard__actions {
  margin-top: 24px;
}

.reg-wizard__card--profile-edit .reg-wizard__footer {
  margin-top: 24px;
  padding-bottom: 12px;
}

.reg-wizard__field--about {
  margin-top: 0;
}

.reg-field--about .reg-field__textarea {
  min-height: 120px;
  max-height: 220px;
  resize: vertical;
  padding: 10px 8px 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.reg-field--about .reg-field__textarea:focus {
  border-color: rgba(232, 93, 111, 0.55);
  border-bottom-color: rgba(232, 93, 111, 0.55);
}

.reg-field__counter {
  margin: 8px 0 0;
  text-align: right;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.45);
}

.reg-field__counter.is-limit {
  color: #ff8fa8;
}

@media (max-width: 960px) {
  .date-page-account-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .reg-page {
    padding: 16px 12px;
  }

  .reg-wizard__card {
    padding: 24px 18px 28px;
  }

  .reg-wizard__step-label {
    font-size: 9px;
  }

  .reg-choice-grid--3 {
    grid-template-columns: 1fr;
  }

  .reg-field-row {
    grid-template-columns: 1fr;
  }
}

.reg-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
