body {
  padding: 0;
}
#signUp,
#signIn,
ins {
  color: var(--purple);
  text-decoration: underline;
  cursor: pointer;
  text-align: center;
}

.svggoogle {
  fill: inherit;
  height: 1.25em;
}
.container-login {
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  min-height: calc(100vh - 6rem);
}
.form-container {
  padding-block: 3rem;
  position: absolute;
  top: 0;
  min-height: calc(100vh - 6rem);
  transition: transform 0.6s ease-in-out, opacity 0.7s cubic-bezier(1, -0.19, 0.06, 1.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
form {
  width: 30rem;
}
.form-content {
  width: 100%;
  gap: 0.7em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.next .cadastrar1 {
  display: none;
}
.cadastrar2 {
  display: none;
}
.next .cadastrar2 {
  display: flex;
}
.form-content p {
  text-align: center;
}
.sign-in-container {
  left: 0;
  width: 50%;
  z-index: 2;
}
.container-login.right-panel-active .sign-in-container {
  transform: translateX(100%);
  opacity: 0;
}

.sign-up-container {
  left: 0;
  width: 50%;
  opacity: 0;
  z-index: 1;
}

.container-login.right-panel-active .sign-up-container {
  transform: translateX(100%);
  opacity: 1;
  z-index: 5;
}
.header {
  position: sticky;
  z-index: 20;
}
.overlay-container {
  background-image: url(../img/Login/Background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  position: fixed;
  display: relative;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.6s ease-in-out;
  z-index: 10;
}

.container-login.right-panel-active .overlay-container {
  transform: translateX(-100%);
}
.overlay {
  color: #ffffff;
  position: relative;
  left: -100%;
  height: 100%;
  width: 200%;
  transform: translateX(0);
}

.container-login.right-panel-active .overlay {
  transform: translateX(50%);
}
/* md */

/* xl */
@media (max-width: 1536px) {
  form {
    width: 28rem;
  }
}

@media (max-width: 1280px) {
  form {
    width: 26rem;
  }
}

/* lg */
@media (max-width: 1024px) {
  form {
    width: 20rem;
  }
}

@media (max-width: 768px) {
  .overlay-container {
    display: none;
  }
  .sign-in-container {
    left: 0;
    width: 100%;
    z-index: 2;
  }
  .form-container {
    position: absolute;
    top: 0;
    transition: transform 0.6s ease-in-out, opacity 0.7s ease;
  }
  .container-login.right-panel-active .sign-in-container {
    transform: translateX(0);
    opacity: 0;
  }

  .sign-up-container {
    left: 0;
    width: 100%;
    opacity: 0;
    z-index: 1;
  }
  .container-login.right-panel-active .sign-up-container {
    transform: translateX(0);
    opacity: 1;
    z-index: 5;
  }

  .container-login.right-panel-active .overlay-container {
    transform: translateX(0);
  }

  .container-login.right-panel-active .overlay {
    transform: translateX(0);
  }
  form {
    width: 25rem;
  }
  .form-content {
    padding-top: 2em;
    padding-bottom: 0;
  }
}
/* sm */
@media (max-width: 640px) {
}
/* xs */
@media (max-width: 475px) {
  form {
    width: 80%;
  }
}
