body.auth-overlay-open {
  overflow: hidden;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.35s;
}

.auth-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease;
}

.auth-overlay-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.auth-overlay-panel {
  position: relative;
  width: 100%;
  margin-top: auto;
  height: auto;
  max-height: none;
  background-color: #fff;
  border-radius: 32px 32px 0 0;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -16px 46px rgba(0, 0, 0, 0.16);
  overflow: visible;
  z-index: 1;
}

.auth-overlay.is-open .auth-overlay-panel {
  transform: translateY(0);
}

.auth-overlay-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: 24px !important;
  line-height: 1;
  z-index: 2;
}

.auth-overlay-back {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: 24px !important;
  line-height: 1;
  z-index: 2;
}

.auth-overlay-content {
  padding: 45px 35px 45px;
}

.auth-overlay.is-loading .auth-overlay-step,
.auth-overlay.is-loading .auth-overlay-login-screen,
.auth-overlay.is-loading .auth-overlay-back {
  display: none !important;
}

.auth-overlay-loading {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.auth-overlay-loading[hidden] {
  display: none;
}

.auth-overlay-loader {
  width: 34px;
  height: 34px;
  border: 3px solid #F3D6E4;
  border-top-color: #FF2AA0;
  border-radius: 50%;
  animation: auth-overlay-spin 0.8s linear infinite;
}

.auth-overlay-loading p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #666;
}

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

.auth-overlay-step {
  display: none;
  width: 100%;
}

.auth-overlay-step.is-active {
  display: block;
}

.auth-overlay-login-screen {
  width: 100%;
}

.auth-overlay-step-intro {
  display: block;
}

.auth-overlay-step-intro-text {
  width: 100%;
}

.auth-overlay-step-hero {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-overlay-step-circle {
  width: 134px;
  height: 134px;
  border-radius: 50%;
  background-color: #F3F1F1;
}

.auth-overlay-step-robot {
  position: absolute;
  height: 140px;
  width: auto;
  object-fit: contain;
}

.auth-overlay-step-title {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #FF2AA0 0%, #522AAB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.auth-overlay-step-text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #121212;
  line-height: 120%;
}

.auth-overlay-progress {
  width: 100%;
  height: 6px;
  margin-top: 40px;
  border-radius: 999px;
  background-color: #EFEFEF;
}

.auth-overlay-progress-fill {
  position: relative;
  height: 100%;
  border-radius: 999px;
  background-color: #FF2AA0;
}

.auth-overlay-progress-badge {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 40px;
  height: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background-color: #FF2AA0;
}

.auth-overlay-form {
  margin-top: 22px;
}

.auth-overlay-form-title {
  margin: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 700 !important;
  color: #FF2AA0;
}

.auth-overlay-form-fields {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-overlay-input {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #D1D1D1;
  border-radius: 10px;
  font-size: 16px;
  color: #121212;
}

.auth-overlay-input::placeholder {
  color: #9A9A9A;
  opacity: 1;
}

.auth-overlay-login-errors,
.auth-overlay-step-errors {
  width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid #F4A3BF;
  border-radius: 10px;
  background-color: #FFF4F8;
  color: #A11244;
  font-size: 14px;
  line-height: 1.35;
}

.auth-overlay-login-errors p,
.auth-overlay-step-errors p {
  margin: 0;
}

.auth-overlay-login-errors p + p,
.auth-overlay-step-errors p + p {
  margin-top: 4px;
}

.auth-overlay-radio-option {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #D1D1D1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.auth-overlay-radio-option:has(input:checked) {
  border-color: #FF2AA0;
  background-color: #FFF4F8;
}

.auth-overlay-radio-input {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: #FF2AA0;
}

.auth-overlay-radio-label {
  font-size: 16px;
  color: #121212;
}

.auth-overlay-checkbox-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 9px;
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #D1D1D1;
  border-radius: 10px;
  font-size: 14px;
  color: #121212;
  cursor: pointer;
}

.auth-overlay-checkbox-input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #FF2AA0;
}

.auth-overlay-checkbox-label {
  line-height: 1.2;
}

.auth-overlay-dynamic-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-overlay-dynamic-empty {
  margin: 0;
  padding: 12px 14px;
  border: 1px dashed #D1D1D1;
  border-radius: 10px;
  color: #666;
  font-size: 14px;
  text-align: center;
}

.auth-overlay-subject-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.auth-overlay-subject-item {
  padding: 10px 14px;
  border: 1px solid #D1D1D1;
  border-radius: 10px;
  background: #fff;
  color: #121212;
  font-size: 14px;
  cursor: pointer;
}

.auth-overlay-subject-item.is-active {
  border-color: #FF2AA0;
  background-color: #FFF4F8;
  color: #A11244;
  font-weight: 700;
}

.auth-overlay-subject-item.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.auth-overlay-payment {
  margin-top: 16px;
}

.auth-overlay-payment-recap {
  margin-top: 12px;
  border: 1px solid #D1D1D1;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.auth-overlay-payment-recap-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: #FFF4F8;
  color: #121212;
}

.auth-overlay-payment-recap-main span {
  font-size: 14px;
  font-weight: 700;
}

.auth-overlay-payment-recap-main strong {
  font-size: 28px;
  font-weight: 900;
  color: #FF2AA0;
}

.auth-overlay-payment-recap-details {
  padding: 12px 16px;
}

.auth-overlay-payment-recap-details p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  line-height: 1.35;
  color: #5F5F5F;
}

.auth-overlay-payment-recap-details p + p {
  margin-top: 8px;
}

.auth-overlay-payment-recap-details span {
  flex: 0 0 auto;
  font-weight: 600;
}

.auth-overlay-payment-value {
  flex: 1 1 auto;
  min-width: 0;
  text-align: right;
  font-weight: 700;
  color: #121212;
  overflow-wrap: anywhere;
}

.auth-overlay-payment-value.has-dropdown {
  display: flex;
  justify-content: flex-end;
}

.auth-overlay-payment-subjects-dropdown {
  width: min(100%, 310px);
  margin: 6px 0 0 auto;
  padding: 0;
  text-align: right;
}

.auth-overlay-payment-subjects-dropdown.is-open {
  margin-bottom: 12px;
}

.auth-overlay-payment-subjects-toggle {
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: #121212;
  text-align: right;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.auth-overlay-payment-subjects-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  color: #FF2AA0;
  flex: 0 0 auto;
  transition: transform 0.22s ease;
}

.auth-overlay-payment-subjects-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.auth-overlay-payment-subjects-panel {
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.2s ease;
}

.auth-overlay-payment-subjects-dropdown.is-open .auth-overlay-payment-subjects-panel {
  opacity: 1;
}

.auth-overlay-payment-subjects-dropdown ul {
  width: 100%;
  margin: 8px 0 0 auto;
  padding: 9px 10px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  background: #FAFAFA;
  display: grid;
  gap: 5px;
  list-style: none;
}

.auth-overlay-payment-subjects-dropdown li {
  font-size: 13px;
  line-height: 1.3;
  color: #121212;
}

.auth-overlay-payment-security {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid #CFE8D9;
  border-radius: 10px;
  background: #F4FBF7;
}

.auth-overlay-payment-security-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #0D7B45;
}

.auth-overlay-payment-security-title i {
  color: #0D7B45;
}

.auth-overlay-payment-security-intro {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #4E4E4E;
}

.auth-overlay-payment-security-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.auth-overlay-payment-security-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.35;
  color: #121212;
}

.auth-overlay-payment-security-list i {
  width: 18px;
  margin-top: 1px;
  color: #FF2AA0;
  text-align: center;
  flex: 0 0 auto;
}

.auth-overlay-payment-reassurance {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid #D7EBDD;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #121212;
}

.auth-overlay-paypal-buttons {
  min-height: 42px;
  display: grid;
  gap: 8px;
}

.auth-overlay-paypal-button-slot {
  min-height: 42px;
}

.auth-overlay-payment-message {
  margin: 10px 0 0;
  font-size: 14px;
  text-align: center;
  color: #666;
}

.auth-overlay-next-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.auth-overlay-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 26px;
  border: none;
  border-radius: 40px;
  background-color: #FF2AA0;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 20px;
}

.auth-overlay-next:disabled {
  cursor: wait;
  opacity: 0.7;
}

.auth-overlay-login-text {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  vertical-align: bottom;
  color: #121212;
}

.auth-overlay-login-link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  color: inherit;
}

.auth-overlay-otp-recipient {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid #D1D1D1;
  border-radius: 10px;
  background: #FAFAFA;
}

.auth-overlay-otp-recipient-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #121212;
}

.auth-overlay-otp-email-row {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.auth-overlay-otp-email-input {
  flex: 1 1 210px;
  min-width: 0;
  padding: 10px 12px;
  font-size: 14px;
}

.auth-overlay-otp-email-edit,
.auth-overlay-otp-email-save,
.auth-overlay-otp-email-cancel {
  border: 0;
  background: transparent;
  color: #FF2AA0;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.auth-overlay-otp-email-save {
  padding: 9px 13px;
  border-radius: 999px;
  background: #FF2AA0;
  color: #fff;
  text-decoration: none;
}

.auth-overlay-otp-email-save:disabled,
.auth-overlay-otp-email-cancel:disabled,
.auth-overlay-otp-email-edit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.auth-overlay-otp-email-status {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: #666;
}

.auth-overlay-otp-email-status[data-status="success"] {
  color: #0D7B45;
}

.auth-overlay-otp {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.auth-overlay-otp-input {
  width: 39px;
  height: 49px;
  border: 1px solid #D1D1D1;
  border-radius: 10px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  padding: 0;
}

.auth-overlay-otp-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #7E7E7E;
}

.auth-overlay-otp-timer {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: #939393;
  margin-bottom: 150px;
}

.auth-overlay-resend-wrap {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.auth-overlay-resend {
  border: none;
  border-radius: 40px;
  background: #D9D9D9;
  color: #5F5F5F;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
}

.auth-overlay-subscription-list {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  padding: 0;
  gap: 10px;
}

.auth-overlay-subscription-list .subscription-item {
  flex: 1 1 100%;
  max-width: 100%;
  container-type: inline-size;
  min-width: 0;
}

.auth-overlay-trial {
  margin-top: 16px;
}

.auth-overlay-trial-heading {
  margin: 20px 0 15px;
  text-align: left;
  text-transform: none;
  font-size: 16px;
  font-weight: 600;
  color: #121212;
  text-transform: uppercase;
}

.auth-overlay-trial-highlight {
  margin: 15px 0 20px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 22px !important;
  font-weight: 900 !important;
  line-height: 1.15;
  letter-spacing: 3%;
  color: #fff;
  background-color: #ff2aa0;
}

.auth-overlay-trial-body {
  margin: 10px 0 0;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.35;
  color: #121212;
}

.auth-overlay-trial-note {
  margin: 15px 0;
  font-size: 16px !important;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0.7;
  color: #121212;
}

.auth-overlay-consent {
  margin-top: 14px;
}

.auth-overlay-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.auth-overlay-consent-checkbox {
  margin: 2px 0 0;
  width: 16px;
  height: 16px;
  accent-color: #FF2AA0;
  flex: 0 0 auto;
}

.auth-overlay-consent-text {
  font-size: 12px;
  line-height: 1.4;
  color: #4E4E4E;
}

.auth-overlay-consent-link {
  font-weight: 700;
  text-decoration: underline;
  color: inherit;
}

.auth-overlay-consent.is-invalid .auth-overlay-consent-text {
  color: #B42318;
}

.auth-overlay-cgv-modal[hidden] {
  display: none;
}

.auth-overlay-cgv-modal {
  position: fixed;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px 0 0;
}

.auth-overlay-cgv-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 15, 0.54);
  backdrop-filter: blur(5px);
}

.auth-overlay-cgv-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px 26px 0 0;
  background: #fff;
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.22);
}

.auth-overlay-cgv-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #111;
  font-size: 22px !important;
  line-height: 1;
}

.auth-overlay-cgv-heading {
  padding: 26px 56px 16px 24px;
  border-bottom: 1px solid #F0E7EE;
}

.auth-overlay-cgv-heading p {
  margin: 0 0 3px;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2;
  letter-spacing: 0;
  color: #FF2AA0;
  text-transform: uppercase;
}

.auth-overlay-cgv-heading h3 {
  margin: 0;
  font-size: 25px !important;
  font-weight: 800 !important;
  line-height: 1.1;
  color: #111;
}

.auth-overlay-cgv-content {
  overflow-y: auto;
  padding: 20px 24px 28px;
  color: #252525;
  font-size: 13px !important;
  line-height: 1.48;
}

.auth-overlay-cgv-content h4 {
  margin: 24px 0 9px;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.25;
  color: #111;
}

.auth-overlay-cgv-content h4:first-of-type {
  margin-top: 14px;
}

.auth-overlay-cgv-content p,
.auth-overlay-cgv-content li {
  font-size: 13px !important;
  line-height: 1.48;
}

.auth-overlay-cgv-content p {
  margin: 0 0 11px;
}

.auth-overlay-cgv-content ul {
  margin: 0 0 13px;
  padding-left: 18px;
}

.auth-overlay-cgv-content li + li {
  margin-top: 7px;
}

.auth-overlay-cgv-content a {
  color: #FF2AA0;
  font-weight: 700;
  text-decoration: underline;
}

.auth-overlay-cgv-date {
  display: inline-flex;
  margin-bottom: 4px !important;
  padding: 7px 10px;
  border: 1px solid #F0CFE0;
  border-radius: 999px;
  background: #FFF5FA;
  color: #7D3158;
  font-weight: 700 !important;
}

@container (max-width: 420px) {
  .auth-overlay-subscription-list .subscription-item {
    flex-direction: column;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 10px;
    padding: 10px;
  }

  .auth-overlay-subscription-list .subscription-item .name {
    width: 100%;
    font-size: 19px !important;
    line-height: 1.1;
  }

  .auth-overlay-subscription-list .subscription-item .content {
    width: 100%;
    min-height: 78px;
    padding: 10px;
  }
}

@media (min-width: 768px) {
  .auth-overlay {
    align-items: center;
    padding: 24px;
  }

  .auth-overlay-backdrop {
    background: rgba(8, 10, 15, 0.62);
    backdrop-filter: blur(8px);
  }

  .auth-overlay-panel {
    width: min(560px, 100%);
    border-radius: 32px;
    margin: auto;
    transform: translateY(100%);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  }

  .auth-overlay.is-open .auth-overlay-panel {
    transform: translateY(0);
  }

  .auth-overlay-close,
  .auth-overlay-back {
    top: 16px;
    width: 40px;
    height: 40px;
    font-size: 22px !important;
  }

  .auth-overlay-close {
    right: 16px;
  }

  .auth-overlay-back {
    left: 16px;
  }

  .auth-overlay-content {
    padding: 72px 36px 36px;
  }

  .auth-overlay-step-hero {
    width: 140px;
    height: 140px;
  }

  .auth-overlay-step-intro {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .auth-overlay-step-intro-text {
    flex: 1;
    min-width: 0;
  }

  .auth-overlay-step-hero {
    margin: 0;
    flex: 0 0 auto;
  }

  .auth-overlay-step-circle {
    width: 134px;
    height: 134px;
  }

  .auth-overlay-step-robot {
    height: 140px;
  }

  .auth-overlay-step-title {
    font-size: 26px;
    text-align: left;
  }

  .auth-overlay-step-text {
    font-size: 14px;
    text-align: left;
  }

  .auth-overlay-form-title,
  .auth-overlay-form-fields {
    width: min(100%, 410px);
    margin-left: auto;
    margin-right: auto;
  }

  .auth-overlay-form-fields {
    margin-top: 15px;
    gap: 15px;
  }

  .auth-overlay-step--subscription .auth-overlay-form-title {
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .auth-overlay-login-screen .auth-overlay-step-intro {
    display: block;
  }

  .auth-overlay-login-screen .auth-overlay-step-intro-text {
    width: 100%;
  }

  .auth-overlay-login-screen .auth-overlay-step-hero {
    margin: 0 auto 18px;
  }

  .auth-overlay-login-screen .auth-overlay-step-title,
  .auth-overlay-login-screen .auth-overlay-step-text {
    text-align: center;
  }

  .auth-overlay-cgv-modal {
    align-items: center;
    padding: 24px;
  }

  .auth-overlay-cgv-panel {
    width: min(760px, 100%);
    max-height: min(760px, 86vh);
    border-radius: 28px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  }

  .auth-overlay-cgv-heading {
    padding: 30px 64px 18px 34px;
  }

  .auth-overlay-cgv-content {
    padding: 24px 34px 34px;
  }
}
