/* 18-register.css — REGISTER PAGE — CLEAN CENTERED / SINGLE CARD */

:root {
  --register-ink: #202020;
  --register-ink-2: #4c4c4c;
  --register-ink-3: #7b7b7b;

  --register-line: rgba(32, 32, 32, 0.09);
  --register-line-strong: rgba(32, 32, 32, 0.16);
  --register-line-soft: rgba(255, 255, 255, 0.44);

  --register-accent: #ff4d4d;
  --register-accent-hover: #f90202;

  --register-card: rgba(255, 255, 255, 0.82);

  --register-success-bg: rgba(223, 247, 239, 0.92);
  --register-success-bd: rgba(103, 181, 146, 0.35);
  --register-success-tx: #246b56;

  --register-danger-bg: rgba(239, 68, 68, 0.08);
  --register-danger-bd: rgba(239, 68, 68, 0.18);
  --register-danger-tx: #b53b3b;

  --register-shadow-xs: 0 8px 18px rgba(0, 0, 0, 0.04);
  --register-shadow-sm: 0 14px 30px rgba(0, 0, 0, 0.06);
  --register-shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.12);

  --register-radius-sm: 18px;
  --register-radius-md: 28px;
  --register-radius-lg: 38px;

  --register-ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.registerStandalone {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 15% 14%,
      rgba(255, 255, 255, .82) 0 180px,
      transparent 360px
    ),
    radial-gradient(
      circle at 85% 12%,
      rgba(255, 77, 77, .045) 0 140px,
      transparent 320px
    ),
    radial-gradient(
      circle at 82% 80%,
      rgba(255, 77, 77, .05) 0 180px,
      transparent 360px
    ),
    linear-gradient(
      180deg,
      #f0f0f0 0%,
      #ebebeb 100%
    );
  color: var(--register-ink);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-repeat: no-repeat;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.hidden,
[hidden] {
  display: none !important;
}

/* =========================================================
   PAGE
========================================================= */

.registerPage {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
}

.registerPage::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .28),
      rgba(255, 255, 255, 0) 26%,
      rgba(255, 255, 255, .24) 100%
    );
}

.registerPage::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .35;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 96px,
      rgba(0, 0, 0, .018) 96px,
      rgba(0, 0, 0, .018) 97px
    );
}

.registerShell {
  width: 100%;
  max-width: 560px;
}

/* =========================================================
   CARD
========================================================= */

.registerCard {
  position: relative;
  overflow: hidden;
  border-radius: var(--register-radius-lg);
  border: 1px solid var(--register-line);
  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(255, 255, 255, .82) 0,
      transparent 34%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 77, 77, .06) 0,
      transparent 26%
    ),
    radial-gradient(
      circle at 88% 100%,
      rgba(255, 255, 255, .6) 0,
      transparent 30%
    ),
    var(--register-card);
  box-shadow: var(--register-shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 28px 24px;
}

.registerCard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid var(--register-line-soft);
}

/* =========================================================
   TOP
========================================================= */

.registerCardTop {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.registerBackBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--register-line);
  background: rgba(255, 255, 255, .72);
  color: var(--register-ink);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--register-shadow-xs);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform .24s var(--register-ease),
    box-shadow .24s var(--register-ease),
    border-color .24s var(--register-ease),
    background .24s var(--register-ease),
    color .24s var(--register-ease);
}

.registerBackBtn:hover {
  transform: translateY(-2px);
  box-shadow: var(--register-shadow-sm);
  border-color: var(--register-line-strong);
  background: rgba(255, 255, 255, .92);
  color: var(--register-accent);
}

.registerBackBtn:focus-visible {
  outline: 3px solid rgba(255, 77, 77, .12);
  outline-offset: 2px;
}

/* =========================================================
   HEAD
========================================================= */

.registerHead {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  text-align: center;
}

.registerLogo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.registerLogo img {
  width: auto;
  height: 36px;
}

.registerTitle {
  margin: 0 0 12px;
  font-size: clamp(36px, 6vw, 50px);
  line-height: .96;
  font-weight: 700;
  letter-spacing: -.06em;
  color: var(--register-ink);
  text-wrap: balance;
}

.registerSub {
  margin: 0 auto;
  max-width: 380px;
  color: var(--register-ink-2);
  font-size: 14px;
  line-height: 1.72;
}

/* =========================================================
   SOCIAL WRAPPER
========================================================= */

.socialAuthRow {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  padding: 14px;
  border-radius: var(--register-radius-md);
  border: 1px solid var(--register-line);
  background: rgba(255, 255, 255, .5);
  box-shadow: var(--register-shadow-xs);
}

.socialAuthRow--stack {
  display: grid;
  gap: 10px;
}

.socialAuthIcons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* =========================================================
   SOCIAL BUTTONS BASE
========================================================= */

.googleDeepBtn,
.yandexDeepBtn,
.mailruDeepBtn,
.maxDeepBtn,
.tgDeepIcon {
  position: relative;
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(32, 32, 32, .08);
  background: rgba(255, 255, 255, .92);
  color: var(--register-ink);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .8),
    0 10px 24px rgba(0, 0, 0, .045);
  text-decoration: none;
  transition:
    transform .22s var(--register-ease),
    box-shadow .22s var(--register-ease),
    border-color .22s var(--register-ease),
    background .22s var(--register-ease),
    color .22s var(--register-ease);
  -webkit-tap-highlight-color: transparent;
}

.googleDeepBtn:hover,
.yandexDeepBtn:hover,
.mailruDeepBtn:hover,
.maxDeepBtn:hover,
.tgDeepIcon:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    0 14px 28px rgba(0, 0, 0, .07);
  background: rgba(255, 255, 255, .98);
}

.googleDeepBtn:active,
.yandexDeepBtn:active,
.mailruDeepBtn:active,
.maxDeepBtn:active,
.tgDeepIcon:active {
  transform: translateY(0) scale(.995);
}

.googleDeepBtn:focus-visible,
.yandexDeepBtn:focus-visible,
.mailruDeepBtn:focus-visible,
.maxDeepBtn:focus-visible,
.tgDeepIcon:focus-visible {
  outline: 3px solid rgba(255, 77, 77, .12);
  outline-offset: 2px;
}

/* =========================================================
   SOCIAL MARKS
========================================================= */

.googleDeepBtn__mark,
.yandexDeepBtn__mark,
.mailruDeepBtn__mark,
.maxDeepBtn__mark,
.tgDeepMark {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  min-width: 34px;
  flex: 0 0 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 1;
}

/* =========================================================
   SOCIAL TEXT
========================================================= */

.googleDeepBtn__text,
.yandexDeepBtn__text,
.mailruDeepBtn__text,
.maxDeepBtn__text,
.tgDeepText {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  color: var(--register-ink);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.01em;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

/* =========================================================
   GOOGLE
========================================================= */

.googleDeepBtn:hover {
  border-color: rgba(66, 133, 244, .22);
}

.googleDeepBtn__mark {
  background: rgba(66, 133, 244, .10);
  color: #4285f4;
  font-size: 18px;
  font-weight: 900;
}

/* =========================================================
   YANDEX
========================================================= */

.yandexDeepBtn:hover {
  border-color: rgba(252, 63, 29, .22);
}

.yandexDeepBtn__mark {
  background: rgba(252, 63, 29, .08);
  color: #fc3f1d;
  font-size: 22px;
  font-weight: 900;
}

/* =========================================================
   MAIL.RU
========================================================= */

.mailruDeepBtn:hover {
  border-color: rgba(0, 95, 249, .22);
}

.mailruDeepBtn__mark {
  background: #005ff9;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 7px 15px rgba(0, 95, 249, .16);
}

/* =========================================================
   TELEGRAM
========================================================= */

.tgDeepIcon:hover {
  border-color: rgba(38, 165, 228, .24);
}

.tgDeepMark {
  background: rgba(38, 165, 228, .10);
  color: #26a5e4;
}

.tgDeepSvg {
  display: block;
  width: 26px;
  height: 26px;
  margin: 0;
  transform: none;
}

/* =========================================================
   MAX
========================================================= */

.maxDeepBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      circle at 22% 50%,
      rgba(46, 212, 255, .10),
      transparent 34%
    ),
    radial-gradient(
      circle at 74% 50%,
      rgba(107, 76, 255, .09),
      transparent 38%
    );
  transition: opacity .22s var(--register-ease);
}

.maxDeepBtn:hover {
  border-color: rgba(89, 101, 255, .25);
}

.maxDeepBtn:hover::before {
  opacity: 1;
}

.maxDeepBtn:focus-visible {
  outline-color: rgba(89, 101, 255, .18);
}

.maxDeepBtn__mark {
  background: transparent;
}

.maxDeepBtn__logo {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* =========================================================
   LEGACY SOCIAL ICON SUPPORT
========================================================= */

.googleIcon,
.yandexIcon,
.mailruIcon,
.maxIcon,
.socialIcon {
  text-decoration: none;
}

.socialIcon,
.googleIcon,
.yandexIcon,
.mailruIcon,
.maxIcon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(32, 32, 32, .08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
  transition:
    transform .2s var(--register-ease),
    box-shadow .2s var(--register-ease),
    border-color .2s var(--register-ease);
}

.socialIcon:hover,
.googleIcon:hover,
.yandexIcon:hover,
.mailruIcon:hover,
.maxIcon:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .08);
}

.googleIcon:hover {
  border-color: rgba(66, 133, 244, .22);
}

.yandexIcon:hover {
  border-color: rgba(252, 63, 29, .22);
}

.mailruIcon:hover {
  border-color: rgba(0, 95, 249, .22);
}

.maxIcon:hover {
  border-color: rgba(89, 101, 255, .25);
}

.googleMark,
.yandexMark,
.mailruMark,
.maxIconMark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  line-height: 1;
}

.googleMark {
  background: rgba(66, 133, 244, .10);
  color: #4285f4;
  font-size: 18px;
  font-weight: 900;
}

.yandexMark {
  color: #fc3f1d;
  font-size: 26px;
  font-weight: 900;
}

.mailruMark {
  background: #005ff9;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.maxIconMark {
  overflow: hidden;
}

.maxIconSvg {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* =========================================================
   DIVIDER
========================================================= */

.registerDivider {
  position: relative;
  z-index: 1;
  margin: 18px 0 16px;
  text-align: center;
}

.registerDivider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--register-line);
}

.registerDivider span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 12px;
  background: rgba(255, 255, 255, .84);
  color: var(--register-ink-3);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* =========================================================
   MESSAGES AND HINTS
========================================================= */

.authHintWrap {
  margin-top: 0;
}

.authProviderHint {
  animation: authProviderHintIn .25s ease both;
}

@keyframes authProviderHintIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hint {
  color: var(--register-ink-2);
  font-size: 13px;
  line-height: 1.45;
}

.hintTop {
  margin-top: 6px;
}

.msgBox {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--register-shadow-xs);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.socialAuthRow .msgBox {
  margin-bottom: 0;
}

.msgBox .ico {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.msgOk {
  background: var(--register-success-bg);
  border-color: var(--register-success-bd);
  color: var(--register-success-tx);
}

.msgOk .ico {
  background: var(--register-success-tx);
}

.msgErr {
  background: var(--register-danger-bg);
  border-color: var(--register-danger-bd);
  color: var(--register-danger-tx);
}

.msgErr .ico {
  background: var(--register-danger-tx);
}

/* =========================================================
   FORM
========================================================= */

.registerFormPage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: 100%;
}

.registerFormPage .field {
  display: grid;
  gap: 7px;
}

.registerFormPage .field label {
  font-size: 12px;
  font-weight: 800;
  color: var(--register-ink-3);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.registerFormPage .input,
.registerFormPage input[type="text"],
.registerFormPage input[type="email"],
.registerFormPage input[type="password"],
.registerFormPage input[type="tel"] {
  width: 100%;
  min-height: 54px;
  border-radius: 17px;
  border: 1px solid var(--register-line);
  background: rgba(255, 255, 255, .92);
  padding: 0 16px;
  font-size: 15px;
  color: var(--register-ink);
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 6px 12px rgba(0, 0, 0, .025);
  transition:
    border-color .22s var(--register-ease),
    box-shadow .22s var(--register-ease),
    background .22s var(--register-ease),
    transform .22s var(--register-ease);
}

.registerFormPage .input::placeholder,
.registerFormPage input::placeholder {
  color: var(--register-ink-3);
  font-weight: 600;
}

.registerFormPage .input:focus,
.registerFormPage input:focus {
  border-color: rgba(255, 77, 77, .24);
  box-shadow:
    0 0 0 5px rgba(255, 77, 77, .06),
    0 10px 18px rgba(0, 0, 0, .04),
    inset 0 1px 0 rgba(255, 255, 255, .82);
  background: #fff;
  transform: translateY(-1px);
}

/* =========================================================
   CHECKBOX
========================================================= */

.registerFormPage .checkbox-field {
  margin-top: 4px;
}

.registerFormPage .checkbox-label {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.68;
  color: var(--register-ink-2);
}

.registerFormPage .checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.registerFormPage .check-custom {
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 77, 77, .24);
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .82),
    0 4px 10px rgba(0, 0, 0, .04);
}

.registerFormPage .checkbox-label input[type="checkbox"]:focus-visible + .check-custom {
  box-shadow:
    0 0 0 4px rgba(255, 77, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .82);
}

.registerFormPage .checkbox-label input[type="checkbox"]:checked + .check-custom {
  background:
    linear-gradient(
      135deg,
      var(--register-accent) 0%,
      var(--register-accent-hover) 100%
    );
  border-color: transparent;
  box-shadow:
    0 10px 18px rgba(255, 77, 77, .20),
    0 0 0 4px rgba(255, 77, 77, .08);
}

.registerFormPage .checkbox-label input[type="checkbox"]:checked + .check-custom::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.registerFormPage .checkbox-label a {
  color: var(--register-accent);
  font-weight: 800;
}

.registerFormPage .checkbox-label a:hover {
  text-decoration: underline;
}

/* =========================================================
   TURNSTILE
========================================================= */

.registerCard .tsBox {
  margin: 8px 0 4px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.registerCard .tsMount {
  display: flex;
  justify-content: center;
  min-height: 66px;
  width: 100%;
}

/* =========================================================
   MAIN BUTTON
========================================================= */

.registerCard .btn,
.registerCard .authBtnFull,
.registerFormPage .btn,
.registerFormPage .authBtnFull,
#registerPageSubmitBtn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0 !important;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .01em;
  text-align: center;
  color: #fff !important;
  background: var(--register-accent) !important;
  box-shadow: 0 14px 28px rgba(255, 77, 77, .20);
  transition:
    transform .28s var(--register-ease),
    box-shadow .28s var(--register-ease),
    filter .28s var(--register-ease),
    background .28s var(--register-ease);
}

.registerCard .btn:hover,
.registerCard .authBtnFull:hover,
.registerFormPage .btn:hover,
.registerFormPage .authBtnFull:hover,
#registerPageSubmitBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 77, 77, .24);
  filter: saturate(1.03) brightness(1.01);
  background: var(--register-accent-hover) !important;
}

.registerCard .btn:active,
.registerCard .authBtnFull:active,
.registerFormPage .btn:active,
.registerFormPage .authBtnFull:active,
#registerPageSubmitBtn:active {
  transform: translateY(0) scale(.99);
}

#registerPageSubmitBtn:focus-visible {
  outline: 3px solid rgba(255, 77, 77, .16);
  outline-offset: 3px;
}

/* =========================================================
   FOOTER TEXT
========================================================= */

.registerCard .authSwitch {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  line-height: 1.65;
  color: var(--register-ink-2);
}

.registerCard .authLinkBtn {
  color: var(--register-accent);
  font-weight: 800;
}

.registerCard .authLinkBtn:hover {
  text-decoration: underline;
}

.registerLegalNote {
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  line-height: 1.55;
  color: var(--register-ink-3);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 760px) {
  .registerPage {
    align-items: flex-start;
    padding: 16px 12px 24px;
  }

  .registerShell {
    max-width: 100%;
  }

  .registerCard {
    padding: 14px 16px 18px;
    border-radius: 28px;
  }

  .registerCardTop {
    margin-bottom: 10px;
  }

  .registerBackBtn {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .registerLogo {
    margin-bottom: 18px;
  }

  .registerLogo img {
    height: 32px;
  }

  .registerTitle {
    font-size: 30px;
  }

  .registerSub {
    font-size: 15px;
    line-height: 1.62;
  }

  .socialAuthRow {
    padding: 12px;
    border-radius: 22px;
  }

  .googleDeepBtn,
  .yandexDeepBtn,
  .mailruDeepBtn,
  .maxDeepBtn,
  .tgDeepIcon {
    min-height: 52px;
    border-radius: 16px;
    gap: 12px;
  }

  .googleDeepBtn__mark,
  .yandexDeepBtn__mark,
  .mailruDeepBtn__mark,
  .maxDeepBtn__mark,
  .tgDeepMark {
    width: 32px;
    height: 32px;
    min-width: 32px;
    flex-basis: 32px;
    border-radius: 11px;
  }

  .maxDeepBtn__logo {
    width: 32px;
    height: 32px;
  }

  .tgDeepSvg {
    width: 24px;
    height: 24px;
  }

  .googleDeepBtn__text,
  .yandexDeepBtn__text,
  .mailruDeepBtn__text,
  .maxDeepBtn__text,
  .tgDeepText {
    font-size: 13.5px;
  }

  .registerFormPage .field label {
    font-size: 11px;
  }

  .registerFormPage .input,
  .registerFormPage input[type="text"],
  .registerFormPage input[type="email"],
  .registerFormPage input[type="password"],
  .registerFormPage input[type="tel"] {
    min-height: 50px;
    font-size: 16px;
    border-radius: 16px;
    padding: 0 15px;
  }

  .registerFormPage .checkbox-label {
    font-size: 15px;
    line-height: 1.62;
  }

  #registerPageSubmitBtn,
  .registerCard .authBtnFull,
  .registerFormPage .authBtnFull {
    min-height: 54px;
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .registerPage {
    padding: 10px 8px 18px;
  }

  .registerCard {
    padding: 12px 12px 16px;
    border-radius: 24px;
  }

  .registerLogo img {
    height: 30px;
  }

  .registerTitle {
    font-size: 26px;
  }

  .registerSub {
    font-size: 14px;
  }

  .registerFormPage .field label {
    font-size: 10.5px;
  }

  .registerFormPage .checkbox-label {
    font-size: 14px;
  }

  .googleDeepBtn,
  .yandexDeepBtn,
  .mailruDeepBtn,
  .maxDeepBtn,
  .tgDeepIcon {
    padding: 0 14px;
    gap: 10px;
  }

  .googleDeepBtn__text,
  .yandexDeepBtn__text,
  .mailruDeepBtn__text,
  .maxDeepBtn__text,
  .tgDeepText {
    font-size: 13px;
  }

  .socialIcon,
  .googleIcon,
  .yandexIcon,
  .mailruIcon,
  .maxIcon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 14px;
  }

  .maxIconSvg {
    width: 26px;
    height: 26px;
  }
}

/* =========================================================
   MOTION
========================================================= */

@media (prefers-reduced-motion: no-preference) {
  .registerCard {
    animation: registerCardIn .32s ease;
  }

  @keyframes registerCardIn {
    from {
      opacity: 0;
      transform: translateY(12px) scale(.992);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .registerCard,
  .registerBackBtn,
  .googleDeepBtn,
  .yandexDeepBtn,
  .mailruDeepBtn,
  .maxDeepBtn,
  .tgDeepIcon,
  .socialIcon,
  .authProviderHint,
  #registerPageSubmitBtn {
    animation: none !important;
    transition: none !important;
  }
}

.registerEmailNotice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 77, 77, .14);
    border-radius: 18px;
    background: rgba(255, 77, 77, .055);
}

.registerEmailNotice__icon {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255, 77, 77, .10);
    color: #ff4d4d;
    font-size: 17px;
}

.registerEmailNotice__body {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.registerEmailNotice__body b {
    color: #27272c;
    font-size: 13px;
    line-height: 1.4;
}

.registerEmailNotice__body span,
.registerFieldHelp {
    color: #71717a;
    font-size: 12px;
    line-height: 1.5;
}

.registerFieldHelp {
    margin-top: -2px;
}

@media (max-width: 640px) {
    .registerEmailNotice {
        padding: 13px;
        border-radius: 16px;
    }
}