/* ═══════════════════════════════════════════
   REGISTRATION FORM OVERLAY
   Shown after the 3rd spin completes.
   Structure:
     .registration-screen  — fullscreen fixed overlay
       .cb-reg             — dark card (max-width 440px)
════════════════════════════════════════════ */

/* Roboto Flex (loaded at 700/900) used for bold headlines/CTAs */
:root { --font-heading: 'Roboto Flex', 'Bebas Neue', sans-serif; }

/* ── Fullscreen overlay ─────────────────────────────── */
.registration-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 16px;
  background:
    linear-gradient(rgba(8, 6, 20, 0.72), rgba(8, 6, 20, 0.72)),
    url("../assets/img/form-bg.webp") center / cover no-repeat;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  box-sizing: border-box;
}

.registration-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ── Card ───────────────────────────────────────────── */
.cb-reg {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  flex-shrink: 0;
  margin-block: auto;
  background: linear-gradient(165deg, #13121F 0%, #0D0C18 100%);
  border: 1px solid rgba(252, 98, 0, 0.28);
  border-radius: 28px;
  padding: 22px 22px 26px;
  box-shadow:
    0 0 60px rgba(252, 98, 0, 0.12),
    0 28px 60px rgba(0, 0, 0, 0.70);
  box-sizing: border-box;
}

/* ── Header: logo + support ─────────────────────────── */
.cb-reg__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cb-reg__brand {
  width: clamp(180px, 22vw, 245px);
  height: auto;
  display: block;
  object-fit: contain;
}

.cb-reg__support {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(252, 98, 0, 0.6);
  background: transparent;
  color: #FC6200;
  text-decoration: none;
  flex: 0 0 auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.cb-reg__support:hover {
  transform: scale(1.05);
  border-color: #FC6200;
  box-shadow: 0 0 18px rgba(252, 98, 0, 0.28);
}

.cb-reg__support svg {
  width: 24px;
  height: 24px;
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Divider ────────────────────────────────────────── */
.cb-reg__divider {
  height: 1px;
  background: rgba(252, 98, 0, 0.22);
  margin-bottom: 18px;
}

/* ── Title row ──────────────────────────────────────── */
.cb-reg__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.cb-reg__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.15;
}

.cb-reg__login {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: #FC6200;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}

.cb-reg__login:hover { color: #ff8040; }

/* ── Bonus card ─────────────────────────────────────── */
.cb-reg__bonus {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  background: rgba(252, 98, 0, 0.07);
  border: 1px solid rgba(252, 98, 0, 0.32);
  border-radius: 14px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.cb-reg__bonus-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 10px;
}

.cb-reg__bonus-content {
  flex: 1;
  min-width: 0;
}

.cb-reg__bonus-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}

.cb-reg__bonus-badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #FC6200;
  background: rgba(252, 98, 0, 0.16);
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cb-reg__bonus-meta > span:last-child {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cb-reg__bonus-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.35;
  margin: 0;
  word-break: break-word;
}

.cb-bonus-accent {
  color: #FC6200;
  font-weight: 800;
}

.cb-bonus-plus {
  color: #ffffff;
  font-weight: 500;
}

/* ── Form ───────────────────────────────────────────── */
.cb-reg__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ── Field wrapper ──────────────────────────────────── */
.cb-field {
  position: relative;
  display: flex;
  align-items: center;
  height: 52px;
  background: rgba(255, 255, 255, 0.055);
  border: 1.5px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  overflow: visible;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.cb-field:focus-within { border-color: rgba(252, 98, 0, 0.60); }
.cb-field.is-error     { border-color: #e05252; margin-bottom: 18px; }

/* ── Input ──────────────────────────────────────────── */
.cb-field input {
  flex: 1;
  height: 100%;
  padding: 0 14px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: #ffffff;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.cb-field input::placeholder { color: rgba(255, 255, 255, 0.32); }

/* ── Icon ───────────────────────────────────────────── */
.cb-field__icon {
  width: 17px;
  height: 17px;
  margin-left: 14px;
  flex-shrink: 0;
  opacity: 0.45;
  filter: brightness(100);
}

/* ── Phone prefix ───────────────────────────────────── */
.cb-field--phone .cb-field__phone-prefix {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  height: 100%;
  flex-shrink: 0;
}

.cb-field__phone-flag {
  display: flex;
  align-items: center;
  width: 22px;
  height: 15px;
  overflow: hidden;
  border-radius: 2px;
  flex-shrink: 0;
}

.cb-field__phone-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cb-field__phone-code {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

.cb-field--phone input { padding-left: 10px; }

/* ── Password toggle ────────────────────────────────── */
.cb-field__toggle {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0 13px;
  height: 100%;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.cb-field__toggle:hover { color: rgba(255, 255, 255, 0.75); }

.cb-field__eye {
  width: 17px;
  height: 17px;
  display: block;
}

/* ── Inline error ───────────────────────────────────── */
.cb-field__error {
  display: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  color: #ff5b6b;
}

.cb-field .cb-field__error {
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  z-index: 5;
  pointer-events: none;
}

.cb-check .cb-field__error {
  display: none;
  margin-top: 4px;
}

.cb-field.is-error  .cb-field__error,
.cb-check.is-error  .cb-field__error { display: block; }

/* ── Checkbox ───────────────────────────────────────── */
.cb-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-top: 2px;
}

.cb-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.cb-check__box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: border-color 0.2s, background 0.2s;
}

.cb-check.is-checked .cb-check__box {
  border-color: #FC6200;
  background: #FC6200;
}

.cb-check.is-error .cb-check__box { border-color: #e05252; }

.cb-check__icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}

.cb-check__icon svg {
  width: 14px;
  height: 14px;
  overflow: visible;
}

.cb-check__icon path {
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.cb-check.is-checked .cb-check__icon { display: flex; }

.cb-check__text {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.55;
  user-select: none;
}

.cb-check__text a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.28);
}

/* ── Submit ─────────────────────────────────────────── */
.cb-reg__submit {
  width: 100%;
  height: 54px;
  background: linear-gradient(135deg, #FC6200 0%, #EF5C00 100%);
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.10em;
  color: #ffffff;
  cursor: pointer;
  margin-top: 4px;
  text-transform: uppercase;
  box-shadow:
    0 4px 24px rgba(252, 98, 0, 0.42),
    inset 0 1px 0 rgba(255, 200, 100, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.cb-reg__submit:hover {
  background: linear-gradient(135deg, #ff7520 0%, #FC6200 100%);
  box-shadow: 0 6px 34px rgba(252, 98, 0, 0.60);
  transform: translateY(-2px);
}

.cb-reg__submit:active  { transform: translateY(0); }
.cb-reg__submit:disabled { opacity: 0.55; pointer-events: none; }

/* ── Sign-in link ───────────────────────────────────── */
.cb-reg__signin {
  font-family: var(--font-body);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  margin: 10px 0 0;
}

.cb-reg__signin a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.28);
}

/* ── Success state ──────────────────────────────────── */
.cb-reg__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 8px;
  gap: 16px;
}

.cb-reg__success.is-visible { display: flex; }

.cb-reg__success-icon {
  width: 64px;
  height: 64px;
  background: rgba(252, 98, 0, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cb-reg__success-icon svg {
  width: 30px;
  height: 30px;
  stroke: #FC6200;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.cb-reg__success-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.cb-reg__success-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  margin: 0;
  max-width: 280px;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .registration-screen {
    padding: 12px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .registration-screen { padding: 10px; }

  .cb-reg {
    border-radius: 22px;
    padding: 18px 16px 22px;
  }

  .cb-reg__brand { width: clamp(160px, 48vw, 200px); }
  .cb-reg__support { width: 46px; height: 46px; }
  .cb-reg__support svg { width: 22px; height: 22px; }

  .cb-reg__title { font-size: 16px; }

  .cb-reg__bonus {
    padding: 10px 12px;
    margin-bottom: 16px;
    gap: 10px;
  }

  .cb-reg__bonus-icon { width: 42px; height: 42px; }

  .cb-field  { height: 48px; }
  .cb-field input { font-size: 13px; }

  .cb-reg__submit { height: 50px; font-size: 15px; }
}

@media (max-height: 660px) {
  .registration-screen { padding-block: 8px; justify-content: flex-start; }
  .cb-reg__divider     { margin-bottom: 12px; }
  .cb-reg__title-row   { margin-bottom: 12px; }
  .cb-reg__bonus       { padding: 8px 12px; margin-bottom: 12px; }
  .cb-reg__bonus-icon  { width: 36px; height: 36px; }
  .cb-reg__form        { gap: 10px; }
  .cb-field            { height: 44px; }
  .cb-reg__submit      { height: 46px; margin-top: 2px; }
}

/* ── Force overrides: logo + support (highest specificity) ── */
.registration-screen .cb-reg .cb-reg__header,
.registration-screen .cb-reg__header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.registration-screen .cb-reg .cb-reg__header .cb-reg__brand,
.registration-screen .cb-reg__brand {
  width: 224px !important;
  max-width: 224px !important;
  height: auto !important;
  max-height: 48px !important;
  object-fit: contain !important;
  display: block !important;
  transform: none !important;
}

@media (max-width: 768px) {
  .registration-screen .cb-reg .cb-reg__header .cb-reg__brand,
  .registration-screen .cb-reg__brand {
    width: 200px !important;
    max-width: 200px !important;
    max-height: 42px !important;
  }
}

/* ── Mobile: no scroll, compact layout ────────────────── */
@media (max-width: 768px) {
  .registration-screen {
    overflow: hidden !important;
    padding: 10px !important;
    justify-content: center !important;
  }

  .cb-reg {
    max-height: calc(100svh - 20px) !important;
    overflow: hidden !important;
    padding: 16px 16px 14px !important;
  }

  .cb-reg__header  { margin-bottom: 10px !important; }
  .cb-reg__divider { margin: 6px 0 10px !important; }

  .cb-reg__title-row { margin-bottom: 10px !important; }
  .cb-reg__title     { font-size: 15px !important; }

  .cb-reg__bonus {
    padding: 9px 11px !important;
    margin-bottom: 10px !important;
  }

  .cb-reg__form   { gap: 9px !important; }

  .cb-field {
    height: 50px !important;
    min-height: 50px !important;
  }
  .cb-field input { font-size: 13px !important; }

  .cb-reg__submit {
    height: 52px !important;
    min-height: 52px !important;
    margin-top: 6px !important;
    font-size: 15px !important;
  }

  .cb-reg__signin {
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    font-size: 12px !important;
  }
}

.registration-screen .cb-reg .cb-reg__support,
.registration-screen .cb-reg__support {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  border: 1px solid rgba(252, 98, 0, 0.6) !important;
  border-radius: 50% !important;
  color: #fc6200 !important;
  display: grid !important;
  place-items: center !important;
  text-decoration: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  transform: none;
}

.registration-screen .cb-reg .cb-reg__support svg,
.registration-screen .cb-reg__support svg {
  width: 20px !important;
  height: 20px !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.registration-screen .cb-reg__support:hover {
  transform: scale(1.05) !important;
  border-color: #fc6200 !important;
  box-shadow: 0 0 18px rgba(252, 98, 0, 0.28) !important;
}

@media (max-width: 768px) {
  .registration-screen .cb-reg .cb-reg__support,
  .registration-screen .cb-reg__support {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
  }

  .registration-screen .cb-reg .cb-reg__support svg,
  .registration-screen .cb-reg__support svg {
    width: 18px !important;
    height: 18px !important;
  }
}

/* ── Header left-alignment: logo flush with content below ── */
#cbRegistration .cb-reg__header,
.registration-screen .cb-reg__header {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-inline: 0 !important;
  margin-inline: 0 !important;
  box-sizing: border-box !important;
}

#cbRegistration .cb-reg__brand,
.registration-screen .cb-reg__brand {
  margin-left: 0 !important;
  padding-left: 0 !important;
  transform: none !important;
  align-self: center !important;
}

#cbRegistration .cb-reg__title-row,
#cbRegistration .cb-reg__bonus,
#cbRegistration .cb-reg__form,
.registration-screen .cb-reg__title-row,
.registration-screen .cb-reg__bonus,
.registration-screen .cb-reg__form {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ── Bonus text size ────────────────────────────────── */
@media (max-width: 768px) {
  .cb-reg__bonus-text {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }
}

/* ── Logo nudge left ────────────────────────────────── */
#cbRegistration .cb-reg__brand,
.registration-screen .cb-reg__brand {
  margin-left: -14px !important;
  transform: translateX(-14px) !important;
}

@media (max-width: 768px) {
  #cbRegistration .cb-reg__brand,
  .registration-screen .cb-reg__brand {
    margin-left: -10px !important;
    transform: translateX(-10px) !important;
  }
}

/* ── Autofill ───────────────────────────────────────── */
.registration-screen input:-webkit-autofill,
.registration-screen input:-webkit-autofill:hover,
.registration-screen input:-webkit-autofill:focus,
.registration-screen input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow:         0 0 0 1000px transparent inset !important;
  transition: background-color 9999s ease-in-out 0s !important;
}

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY — Zalando Sans Expanded
   Variable TTF: assets/fonts/Zalando_Sans_Expanded/
════════════════════════════════════════════════════════ */

@font-face {
  font-family: "Zalando Sans Expanded";
  src: url("../assets/fonts/Zalando_Sans_Expanded/ZalandoSansExpanded-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zalando Sans Expanded";
  src: url("../assets/fonts/Zalando_Sans_Expanded/ZalandoSansExpanded-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

/* ── Title / Submit / Spin / Overlay — Zalando Sans Expanded ── */
#cbRegistration .cb-reg__title,
.registration-screen .cb-reg__title,
#cbRegistration .cb-reg__submit,
.registration-screen .cb-reg__submit,
#cbRegistration .cb-reg__submit span,
.registration-screen .cb-reg__submit span,
.spin-btn__text,
.spin-card__title {
  font-family: "Zalando Sans Expanded", "Roboto Flex", "Bebas Neue", sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
}

/* ── Body text: залишаємо Manrope ───────────────────── */
#cbRegistration .cb-field input,
.registration-screen .cb-field input,
#cbRegistration .cb-check__text,
.registration-screen .cb-check__text,
#cbRegistration .cb-reg__signin,
.registration-screen .cb-reg__signin,
#cbRegistration .cb-reg__bonus-text,
.registration-screen .cb-reg__bonus-text,
#cbRegistration .cb-reg__bonus-meta,
.registration-screen .cb-reg__bonus-meta {
  font-family: "Manrope", sans-serif !important;
}

/* ── Bonus text size (desktop) ──────────────────────── */
#cbRegistration .cb-reg__bonus-text,
.registration-screen .cb-reg__bonus-text {
  font-size: 15px !important;
  line-height: 1.32 !important;
  font-weight: 400 !important;
}

/* ── Bonus text size (mobile) ───────────────────────── */
@media (max-width: 768px) {
  #cbRegistration .cb-reg__bonus-text,
  .registration-screen .cb-reg__bonus-text {
    font-size: 12.5px !important;
    line-height: 1.3 !important;
  }
}

/* ── Bonus text: flex-wrap flow, no forced line break ─── */
#cbRegistration .cb-reg__bonus-text,
.registration-screen .cb-reg__bonus-text {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: baseline !important;
  gap: 0 5px !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
}

/* "+" і число ніколи не розриваються */
#cbRegistration .cb-bonus-nowrap,
.registration-screen .cb-bonus-nowrap {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 4px !important;
  white-space: nowrap !important;
}

#cbRegistration .cb-bonus-plus,
.registration-screen .cb-bonus-plus {
  color: #ffffff !important;
  font-weight: 500 !important;
}

#cbRegistration .cb-bonus-accent,
.registration-screen .cb-bonus-accent {
  color: #FC6200 !important;
  font-weight: 900 !important;
}

/* ═══════════════════════════════════════════════════════
   DESKTOP — no scroll, form centered in viewport
════════════════════════════════════════════════════════ */
@media (min-width: 769px) {
  .registration-screen,
  #cbRegistration {
    overflow: hidden !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 24px !important;
  }
}

/* Compact spacing on shorter desktop screens (≤ 860px tall) */
@media (min-width: 769px) and (max-height: 860px) {
  #cbRegistration .cb-reg,
  .registration-screen .cb-reg {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  #cbRegistration .cb-reg__header,
  .registration-screen .cb-reg__header {
    margin-bottom: 8px !important;
  }

  #cbRegistration .cb-reg__divider,
  .registration-screen .cb-reg__divider {
    margin: 4px 0 8px !important;
  }

  #cbRegistration .cb-reg__title-row,
  .registration-screen .cb-reg__title-row {
    margin-bottom: 8px !important;
  }

  #cbRegistration .cb-reg__bonus,
  .registration-screen .cb-reg__bonus {
    margin-bottom: 8px !important;
  }

  #cbRegistration .cb-reg__form,
  .registration-screen .cb-reg__form {
    gap: 8px !important;
  }

  #cbRegistration .cb-reg__signin,
  .registration-screen .cb-reg__signin {
    margin-top: 6px !important;
    margin-bottom: 0 !important;
  }
}
