@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #212932;
}

.phoneError,
.emailError,
#errorMessageLogin,
#errorMessageLoginEmail,
#errorMessageLoginSMS {
  color: #c66;
  font-size: 12px;
  font-family: Roboto, "sans-serif";
  border-color: #c66;
}

#successMessage,
#successMessageSMS {
  color: rgb(101, 230, 26);
  font-size: 12px;
  font-family: Roboto, "sans-serif";
  border-color: rgb(101, 230, 26);
}

.containerMobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  max-width: 400px;
  height: 100vh;
  margin-inline: auto;
  overflow: hidden;
}

.backgroundImage {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  height: 58vh;

  & img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.containerLogin {
  width: 100%;
  background-color: white;
  border-radius: 1.5rem 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1rem;
  max-width: 400px;
  margin-inline: auto;
}

.wrapperAccount {
  background-color: #282828;
  border: 1px solid #282828;
  border-radius: 8px;

  & span {
    height: 40px;
    width: 100%;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
  }
}

.wrapperSignUp {
  background-color: white;
  border: 1px solid #282828;
  border-radius: 8px;

  & button {
    height: 40px;
    width: 100%;
    color: #282828;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    background: none;
    cursor: pointer;
  }
}

.containerQuestion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  color: #282828;
  text-decoration: none;

  & img {
    width: 25px;
    height: 25px;
  }
}

.link {
  margin-inline: auto;
  font-family: Roboto, sans-serif;
  font-size: 18px !important;
  color: #282828;
  font-weight: 700;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
}

.modalButtonsLogin {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100vh;
}

.modalButtonsContentLogin {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 25vh;
  background-color: white;
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-top: 10px;
  max-width: 400px;
}

.wrapperButtonsLogin {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding-inline: 1rem;
}

.btnEmail {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 40px;
  color: white;
  border: 1px solid #282828;
  background-color: #282828;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: Roboto, "sans-serif";
  cursor: pointer;
}

.btnSms,
.btnEmailPassword {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 40px;
  color: #282828;
  border: 1px solid #282828;
  background-color: white;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: Roboto, "sans-serif";
  cursor: pointer;
}

.none {
  display: none !important;
}

.block {
  display: block !important;
}

.flex {
  display: flex !important;
}

.textModalLogin {
  font-family: Roboto, "sans-serif";
  font-size: 18px;
  font-weight: 600;
}
/* 
.arrowBelow {
  transform: rotate(90deg);
  cursor: pointer;
} */

.close {
  position: absolute;
  top: 15px;
  height: 5px;
  width: 45px;
  background-color: #e5dddd;
  border-radius: 99px;
  cursor: pointer;
}
/* 
@media (min-width: 425px) {
  .backgroundImage {
    & img {
      max-height: 500px;
    }
  }
} */

.wrapperQuestion {
  & > a {
    display: block;
  }

  & a:nth-child(2) {
    cursor: auto;

    & img {
      cursor: pointer;
    }
  }
}

@media (max-width: 749px) {
  .containerDesktop {
    display: none !important;
  }

  .backgroundDesktop {
    display: none !important;
  }
}

@media (min-width: 750px) {
  .containerMobile {
    display: none;
  }

  html {
    background-color: transparent;
  }

  .containerQuestion {
    gap: 1rem;

    & a {
      font-size: 1rem;
      flex-direction: column;
      font-family: Roboto, sans-serif;
      color: #282828;
      text-decoration: none;
      text-align: center;

      &:hover {
        text-decoration: underline;
      }
    }

    .link {
      font-weight: 500;
    }

    & img {
      width: 35px;
      height: 35px;
      margin-top: 10px;
    }
  }
}

@media (max-width: 375px) {
  .modalButtonsContentLogin {
    height: 30vh;
    gap: 1rem;
  }
}

.modalEnter {
  animation: slideUp 0.3s ease-in-out forwards;
}

.modalExit {
  animation: slideDown 0.3s ease-in-out forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

/* Desktop */

.desktop {
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.containerDesktop {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.wrapperImage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;

  & > img {
    max-width: 800px;
    width: 100%;
  }
}

.containerLoginEmailPassword,
.containerLoginCodeEmail,
.containerLoginCodeSMS {
  background-color: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  justify-items: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  width: 100%;
  flex-shrink: 0;
  margin-right: 40px;
}

.wrapperCodeAccess {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.wrapperLoginAndPassword {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formLoginDesktop {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.titleFormDesktop {
  font-family: Roboto, "sans-serif";
  font-size: 20px;
  font-weight: 500;
  color: #252736;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.wrapperLoginDesktop,
.wrapperPassword {
  display: flex;
  flex-direction: column;
  gap: 2px;

  &:focus-within label {
    color: #252736;
    opacity: 1;
  }

  & label {
    font-size: 1rem;
    font-family: Roboto, "sans-serif";
    font-weight: 500;
    color: #666;
    opacity: 0.5;
  }

  & input {
    border: 1px solid #666;
    background: none;
    padding: 10px;
    border-radius: 1rem;
    font-size: 1rem;
    opacity: 0.5;
    height: 40px;
    color: #282828;

    &:focus {
      opacity: 1;
      border: 1px solid #252736;
      color: #252736;
    }

    &::placeholder {
      text-align: center;
      font-size: 1rem;
      font-family: Roboto, "sans-serif";
      font-weight: 300;
      color: #666;
    }
  }
}

.wrapperPassword {
  position: relative;
}

.backgroundDesktop {
  position: fixed;
  max-width: 1500px;
  width: 75%;
  height: 100vh;
  z-index: -1;

  & img {
    width: 100%;
    height: 100vh;
  }
}

.icon-eye,
.icon-eye-off {
  display: block;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-eye {
  background-image: url("https://meufestval.vtexassets.com/assets/vtex.file-manager-graphql/images/501552c0-158b-426a-ba7f-1cd488519a16___48a34fb30f9fef35334fca99496d3a7c.svg");
}

.icon-eye-off {
  background-image: url("https://meufestval.vtexassets.com/assets/vtex.file-manager-graphql/images/600d287b-5692-4c9a-a198-478cf55c140d___8094dfac7eadcf6dbd1a3e766d08b70d.svg");
}

.toggle-button.show-eye-off .icon-eye {
  display: none;
}

.toggle-button.show-eye-off .icon-eye-off {
  display: block !important;
}
/*
.toggle-button {
  position: absolute;
  right: 0;
  top: 29px;
  appearance: none;
  background: none;
  border: none;
  margin-right: 8px;
  cursor: pointer;
  max-width: 25px;
  height: 25px;
} */

.forgotMyPassword {
  text-align: start;
}

.forgotMyPassword {
  font-family: Roboto, "sans-serif";
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #252736;
  cursor: pointer;
  border: none;
  background: none;
}

.createAccount {
  font-family: Roboto, "sans-serif";
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  color: #252736;
  border: none;
  background: none;
}

.createAccountLink {
  font-family: Roboto, "sans-serif";
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: #252736;
  cursor: pointer;
  border: none;
  background: none;

  &:hover {
    text-decoration: underline;
  }
}

.btnSubmit {
  border: 1px solid #282828;
  border-radius: 1rem;
  background: #282828;
  font-family: Roboto, "sans-serif";
  font-size: 1rem;
  font-weight: 500;
  color: white;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;

  &:hover {
    opacity: 0.9;
  }
}

.btnCodeSms,
.btnEmailPasswordDesktop {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #282828;
  border-radius: 1rem;
  background: white;
  font-family: Roboto, "sans-serif";
  font-size: 1rem;
  font-weight: 500;
  color: #282828;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;

  &:hover {
    opacity: 0.8;
  }
}

.btnCodeEmail {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #282828;
  border-radius: 1rem;
  background: #282828;
  font-family: Roboto, "sans-serif";
  font-size: 1rem;
  color: white;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;

  &:hover {
    opacity: 0.8;
  }
}

.linkCode {
  color: #282828;
  font-family: Roboto, "sans-serif";
  font-size: 12.5px;
  font-weight: 400;
  cursor: pointer;
  max-width: fit-content;
}

.linkCode.disabled {
  color: #6c757d;
  cursor: default;
  text-decoration: none;
  pointer-events: none;
}

#btnCodeSMS[disabled],
#btnLoginCodeSMS[disabled],
#btnCodeEmail[disabled],
#btnLoginCodeEmail[disabled] {
  color: #282828 !important;
  background: #e5dddd;
  border: 1px solid #e5dddd;
  opacity: 0.6;
  cursor: default !important;
  text-decoration: none !important;
  pointer-events: none !important;
}

.linkCode:hover:not(.disabled) {
  text-decoration: underline;
}

.arrowToBackToLogin {
  align-self: flex-start;
  cursor: pointer;

  & img {
    transform: rotate(90deg);
  }
}

.headerLoginCodeEmail,
.headerLoginCodeSMS {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.arrowToBackToLogin {
  width: fit-content;
}

/* Style Sign Up */

#first-page-sign-up {
  background-color: white;
  margin-right: 40px;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  flex-shrink: 0;
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#first-page-sign-up {
  .data-personal-section,
  .data-address-section,
  .data-access-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    width: 100%;
  }

  .step {
    width: 10px;
    height: 10px;
    background-color: #d8d8d8;
    border-radius: 99999px;
  }

  .active-step {
    width: 15px;
    height: 15px;
    background-color: #282828;
  }

  .containerArrowBack {
    max-width: 600px;
    margin-inline: auto;
    margin-top: 15px;
    width: 100%;
  }

  .wrapperArrowBack {
    height: 60px;
    max-width: 600px;
    width: 100%;
    position: relative;
    margin-inline: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  #arrowBackToDataAddress,
  #arrowBackToDataPersonal,
  #arrowBackToLogin {
    position: absolute;
    left: 0px;
    transform: rotate(90deg);

    &:hover {
      cursor: pointer;
    }
  }

  @media (min-width: 630px) {
    #arrowBackToDataAddress,
    #arrowBackToDataPersonal,
    #arrowBackToLogin {
      left: 5px !important;
      transform: rotate(90deg) translateY(1px);
    }
  }

  .title {
    font-family: Roboto, "sans-serif";
    color: #282828;
    text-transform: uppercase;
    font-size: 14px;
  }

  #arrowBackToDataAddress,
  #arrowBackToDataPersonal,
  #arrowBackToLogin {
    position: absolute;
    left: 0px;
    transform: rotate(90deg);

    &:hover {
      cursor: pointer;
    }
  }

  .wrapperInfo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-content: flex-start;
    max-width: 600px;
    margin-inline: auto;
  }

  .titleInfo {
    font-size: 20px;
    font-weight: 600;
    font-family: Roboto, "sans-serif";
    color: #282828;
  }

  .textInfo {
    font-size: 14px;
    font-family: Roboto, "sans-serif";
    color: #282828;
  }

  .wrapperGenderAndBirth {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;

    & > .fixed-label {
      width: 100%;
      margin: 0;
    }

    #gender-select {
      appearance: auto;
    }
  }

  .acceptTerms {
    text-transform: uppercase !important;
  }

  .wrapperNoCep {
    text-align: end;
    transform: translateY(10px);
  }

  .data-personal-section,
  .data-address-section,
  .data-access-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    width: 100%;
  }

  .step {
    width: 10px;
    height: 10px;
    background-color: #d8d8d8;
    border-radius: 99999px;
  }

  .active-step {
    width: 15px;
    height: 15px;
    background-color: #282828;
  }

  #first-page-sign-up,
  #thirty-page-sign-up,
  #second-page-sign-up {
    position: relative;
  }

  #btnContinueToAddress[disabled],
  #btnContinueToDataAccess[disabled],
  #btnSubmit[disabled] {
    background-color: #e5dddd;
    color: #282828;
    opacity: 0.6;
    pointer-events: none;
    font-family: Roboto, "sans-serif";
  }

  @media (min-width: 750px) {
    #btnContinueToAddress,
    #btnContinueToDataAccess,
    #btnSubmit {
      width: 100%;
      max-width: 200px;
      align-self: flex-end;
      margin-top: 5px;
      font-family: Roboto, "sans-serif";
    }
  }

  .fixed-label {
    margin: 20px 0;
    position: relative;
  }

  .fixed-label label {
    font-size: 12px;
    color: #666;
    display: block;
    font-family: Roboto, "sans-serif";
  }

  .fixed-label input,
  .fixed-label select {
    width: 100%;
    border: none;
    border: 1px solid #282828;
    padding: 5px 8px;
    font-size: 16px;
    background: transparent;
    border-radius: 10px;
    height: 40px;
    color: #282828;
    font-family: Roboto, "sans-serif";
  }

  .fixed-label input::placeholder {
    color: rgb(195, 195, 195) !important;
  }

  .floating-label {
    position: relative;
    margin: 20px 0;
  }

  .floating-label input {
    width: 100%;
    border: 1px solid #282828;
    padding: 10px 8px;
    font-size: 16px;
    background: transparent;
    border-radius: 10px;
    height: 40px;
    color: #282828;
    font-family: Roboto, "sans-serif";
  }

  .floating-label label {
    position: absolute;
    left: 0;
    top: 11px;
    font-size: 14px;
    pointer-events: none;
    transition: 0.2s ease all;
    margin-left: 8px;
    color: rgb(195, 195, 195) !important;
    font-family: Roboto, "sans-serif";
  }

  .floating-label input:focus + label,
  .floating-label input:not(:placeholder-shown) + label {
    top: -10px;
    left: 2px;
    font-size: 12px;
    background-color: white;
    padding: 3px;
  }

  .floating-label input:focus + label {
    color: #666;
  }

  .floating-label input:not(:placeholder-shown) + label {
    color: rgb(102 102 102) !important;
  }

  .floating-label.error input {
    border: 1px solid rgb(179, 40, 13);
    border-radius: 4px;
    padding: 10px;
  }

  .floating-label.error label {
    color: rgb(179, 40, 13);
  }

  #errorMessageSignUp {
    color: #c66;
    font-size: 12px;
    font-family: Roboto, "sans-serif";
    border-color: #c66;
    display: none;
  }

  .containerName {
    display: flex;
    gap: 20px;
  }

  .containerName .floating-label {
    flex: 1;
    margin: 0;
  }

  .gender-section {
    margin: 20px 0;
  }

  .section-label {
    color: black;
    display: block;
    margin-bottom: 10px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
  }

  .radios {
    margin-left: -5px;
    display: flex;
    gap: 20px;
  }

  .radios div {
    display: flex;
    align-items: center;
  }

  .address-section {
    margin: 20px 0;
  }

  .address-section .section-label {
    display: inline-block;
  }

  .no-cep {
    font-size: 12px;
    text-decoration: none;
    color: #1976d2;
    margin-bottom: 10px;

    &:hover {
      text-decoration: underline;
    }
  }

  .wrapperAddress {
    display: flex;
    gap: 20px;
  }

  .wrapperAddress .fixed-label,
  .wrapperAddress .floating-label {
    flex: 1;
    margin: 0;
  }

  .fixed-label select {
    appearance: none;
  }

  .address {
    margin-bottom: 0px !important;
  }

  .textDisabled {
    position: absolute;
    top: -8px;
    left: 8px;
    background-color: white;
    padding: 3px;
  }

  .inputDisabled {
    color: lightgray !important;
    border-color: lightgray !important;
  }

  .optionGender,
  .inputGender {
    cursor: pointer;
  }

  .passwordError {
    color: #c66;
    font-size: 12px;
    font-family: Roboto, "sans-serif";
    border-color: #c66;
    display: none;
  }

  .inputGender {
    width: 100%;
    height: 40px;
    border: 1px solid #282828;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    padding: 5px 8px;
  }

  .inputGender:checked {
    background-color: #282828;
    border-color: #282828;
  }

  .radioGender {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
  }

  .radioGender:hover {
    background-color: #28282850;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    cursor: pointer;
  }

  .textLabel {
    position: absolute;
    top: -10px;
    left: 8px;
    background-color: white;
    padding: 3px;
    color: rgb(102 102 102);
  }

  .floating-label:focus-within label {
    color: rgb(102 102 102) !important;
  }

  .toggle-button {
    appearance: none;
    background: none;
    border: none;
    margin-right: 8px;
    cursor: pointer;
    max-width: 25px;
    height: 25px;
  }

  .inputPasswordSignUp {
    border-radius: 10px 0 0 10px !important;
    border-right: none !important;

    &:focus-within {
      outline: 0 !important;
      border: 2px solid #282828;
    }
  }

  .inputPasswordSignUp:focus-within + label + .containerButton {
    border: 2px solid #282828 !important;
    border-left: none !important;
  }

  .containerPassword {
    display: flex;
  }

  .containerButton {
    height: 40px;
    border: 1px solid #282828;
    border-left: none;
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .terms-section {
    margin: 0 0 20px 0;
  }

  #termsCheckbox {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #666;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 8px;
    transition: background-color 0.2s;
  }

  #termsCheckbox {
    background-color: white;
  }

  #termsCheckbox:checked {
    background-color: #282828;
    border-color: #282828;
  }

  #termsCheckbox:checked::after {
    content: "✓";
    color: white;
    font-size: 12px;
    text-align: center;
    display: block;
    line-height: 12px;
  }

  label[for="termsCheckbox"] {
    font-size: 16px;
    color: #333;
    vertical-align: middle;
    cursor: pointer;
    text-decoration: underline;
    font-family: Roboto, "sans-serif";
  }

  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 800px;
    max-height: 80%;
    position: relative;
    overflow: auto;
    overflow-x: hidden;
  }

  .close-modal {
    position: absolute;
    right: 0;
    font-size: 24px;
    cursor: pointer;
    color: #666;
  }

  .close-modal:hover {
    color: #000;
  }

  .accept-button {
    background-color: #282828;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
    display: block;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 700;
  }

  .deny-button {
    background-color: white;
    color: rgb(179, 40, 13);
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;

    &:hover {
      background-color: #f8d7da30;
    }
  }

  .accept-button:hover {
    background-color: #333;
  }

  .wrapperButtonsTerms {
    display: flex;
    gap: 10px;
    flex-direction: column;

    & > .accept-button {
      margin-top: 0;
    }

    & > .deny-button {
      margin-top: 0;
    }
  }

  .wrapperButtons {
    display: flex;
    gap: 10px;
  }

  .icon-eye,
  .icon-eye-off {
    display: block;
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 8px;
    right: 8px;
  }

  .icon-eye {
    background-image: url("https://meufestval.vtexassets.com/assets/vtex.file-manager-graphql/images/501552c0-158b-426a-ba7f-1cd488519a16___48a34fb30f9fef35334fca99496d3a7c.svg");
  }

  .icon-eye-off {
    background-image: url("https://meufestval.vtexassets.com/assets/vtex.file-manager-graphql/images/600d287b-5692-4c9a-a198-478cf55c140d___8094dfac7eadcf6dbd1a3e766d08b70d.svg");
  }

  .toggle-button.show-eye-off .icon-eye {
    display: none;
  }

  .toggle-button.show-eye-off .icon-eye-off {
    display: block !important;
  }

  .modal-content h6 {
    text-transform: uppercase;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    color: #6b7580;
    margin: 2rem 0 1.5rem;
  }

  .textModal,
  .listDifinitions li,
  .listDataCollected li {
    color: #6b7580;
    font-size: 14px;
    letter-spacing: 0.02em;
    font-style: normal;
    font-weight: 400;
    font-family: Roboto, sans-serif;
  }

  .titleList {
    font-weight: 900;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    letter-spacing: 0.02em;
    font-family: Roboto, sans-serif;
  }

  .listDifinitions li {
    margin-left: 25px;
  }

  .listDataCollected li {
    margin-left: 25px;
  }

  .listDataCollected,
  .listDifinitions,
  .sublistDataCollected {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .textModal {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .modal-content a {
    color: #1976d2;
  }

  .titleData {
    font-size: 16px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.02em;
    font-family: Roboto, sans-serif;
  }

  .modal-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: black;
    letter-spacing: 0.02em;
    font-family: Roboto, sans-serif;
  }

  .scroll-indicator {
    height: 20%;
    text-align: center;
    padding: 10px 0;
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(
      to top,
      rgba(255, 255, 255, 0.8) 40%,
      rgba(255, 255, 255, 0) 100%
    );
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
  }

  .scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .arrow-down {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    animation: bounce 1.5s infinite;
  }

  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }

  .arrow-down > img {
    height: 40px;
  }

  @media (max-width: 454px) {
    .radios {
      flex-direction: column;
      gap: 0;
    }
  }

  .modal-content::-webkit-scrollbar-track {
    background-color: #f4f4f4;
    border-radius: 999px;
  }
  .modal-content::-webkit-scrollbar {
    width: 6px;
    border-radius: 999px;
    background: #f4f4f4;
  }
  .modal-content::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #dad7d7;
  }

  .wrapperHeaderModal {
    position: fixed;
    width: 87%;
    max-width: 775px;
    background: white;
    height: 50px;
    padding-top: 10px;
    padding-left: 1rem;
  }

  .containerHeaderModal {
    position: absolute;
    background: white;
    height: 30px;
    top: 0;
    left: 0;
    width: 100%;
  }

  .containerArrowBack {
    max-width: 600px;
    margin-inline: auto;
    margin-top: 15px;
    width: 100%;
  }

  .wrapperArrowBack {
    height: 60px;
    max-width: 600px;
    width: 100%;
    position: relative;
    margin-inline: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .back {
    display: none;
  }

  @media (min-width: 630px) {
    #arrowBackToDataAddress,
    #arrowBackToDataPersonal,
    #arrowBackToLogin {
      left: 5px !important;
      transform: rotate(90deg) translateY(1px);
    }
  }

  @media (min-width: 750px) {
    .wrapperButtonsTerms {
      flex-direction: row;
    }

    .title {
      font-size: 20px !important;
    }
  }
}

.errorName,
.errorLastName,
.errorCEP {
  margin-top: 5px;
  display: none;
}

.errorNameText,
.errorLastNameText,
.errorCEPText {
  font-size: 11px;
  color: #c66;
  font-family: Roboto, "sans-serif";
  width: 100%;
}

.errorDataBirthday {
  font-size: 11px;
  color: #c66;
  font-family: Roboto, "sans-serif";
  width: 100%;
  margin-top: 5px;
  display: none;
}

@media (max-width: 749px) {
  .containerLogin {
    .wrapperAccount {
      & > span {
        height: 60px;
        font-size: 20px;
      }
    }

    .wrapperSignUp {
      & > button {
        height: 60px;
        font-size: 20px;
      }
    }

    .containerQuestion {
      font-size: 16px;
      gap: 0.25rem;

      img {
        width: 30px;
        height: 30px;
      }
    }

    .link {
      font-size: 22px !important;
      text-decoration: underline;
    }
  }

  .modalButtonsLogin {
    .btnEmail,
    .btnSms {
      height: 60px;
      font-size: 18px;
    }
  }

  .textModalLogin {
    font-size: 22px;
  }

  .close {
    top: 10px;
  }

  .wrapperButtonsLogin {
    gap: 0.5rem;
  }
}

@media (max-height: 670px) {
  .backgroundImage {
    height: 50%;
  }
}
