.parent-cont {
  width: 100%;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  padding-inline: 1rem;
  background-color: var(--primary);
}
.cont {
  width: 90%;
  min-width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  background-color: white;
  border-radius: var(--xxxl);
}

.start-cont {
  width: 50%;
  display: flex;
  position: relative;
  justify-content: start;
  align-items: center;
  min-height: 80vh;
  border-radius: var(--xxxl);
}

.end-cont {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.start-cont__bgc {
  min-width: 88%;
  min-height: 88vh;
  background-color: var(--primary);
  border-radius: var(--xxxl);
}

.start-cont__img {
  position: absolute;
  margin-top: 1rem;
  left: 0;
  bottom: 0;
  width: 100%;
  min-width: 70%;
  z-index: 999;
  object-fit: cover;
  object-position: left bottom;
  border-radius: 20px 0 0 20px;
}

.start-cont__logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: white;
}
.logo_text {
  color: white !important;
  font-weight: 700;
}
.form-cont {
  position: relative;
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  background-color: #fff;
  border: 2px solid var(--white-color);
}

.form-cont__logo-bg {
  width: 100%;
  min-height: 350px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--md) var(--md) 0 0;
  padding-block: 5px;
  background-image: url("/src/img/blur_blue_squars.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.form-cont__logo {
  z-index: 999;
  width: 120px;
}

.logo-bg__drop-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 146, 136, 0) 28%,
    rgba(255, 255, 255, 5) 50%
  );
}

.form-cont__text-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
  margin-bottom: 1rem;
}

.form-cont__text-box p {
  color: var(--text-I);
}

.form-cont__text-box .form-cont__radio-input {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 2rem;
}

.radio-input__wrapper span input {
  display: none;
}

.radio-input__wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: #fff;
  color: #000000;
  overflow: hidden;
  margin-bottom: 1rem;
}

.radio-input__wrapper span {
  width: 32%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  letter-spacing: -1px;
  font-size: 14px;
  letter-spacing: 1px;
  border: 1px solid rgba(53, 52, 52, 0.226);
  border-radius: var(--md);
}

.radio-list label {
  text-align: center;
  padding-block: 12px;
  padding-inline: 20px;
  width: 100%;
  cursor: pointer;
}

.selection {
  display: none;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  left: 0;
  top: 0;
  transition: 0.15s ease;
}

.radio-input__wrapper span:has(input:checked) label {
  color: white !important;
}

.radio-input__wrapper span:has(input:checked) {
  border: none;
}

.radio-list {
  width: 30%;
}

.radio-list:has(input:checked) ~ .selection {
  background: var(--primary);
  display: inline-block;
  z-index: 0;
}

.radio-input__wrapper span:nth-child(1).checked ~ .selection {
  transform: translateX(calc(30% * 0 / 3));
  z-index: 0;
}

.radio-input__wrapper span:nth-child(2):has(input:checked) ~ .selection {
  transform: translateX(105%);
  z-index: 0;
}

.radio-input__wrapper span:nth-child(3):has(input:checked) ~ .selection {
  transform: translateX(212%);
  z-index: 0;
}

.Signin {
  position: relative;
  height: 100vh;
  display: grid;
  align-items: center;
}

.Signin__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.Signin__box {
  grid-template-columns: max-content 1fr;
  align-items: center;
  column-gap: 0.75rem;
  color: #888;
}
.Signin__icon,
.Signin__eye {
  font-size: 1.25rem;
}
.Signin__input {
  width: 100%;
  background: none;
  color: var(--text-I);
  border: 1px solid gray;
  border-radius: var(--md);
  padding-inline: 1rem;
  padding-block: 0.7rem;
  position: relative;
  z-index: 1;
}
.Signin__box-input {
  position: relative;
}
.Signin__label {
  position: absolute;
  left: 0;
  top: 13px;
  transition: top 0.3s, font-size 0.3s;
}
.Signin__eye {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  right: 10px;
  z-index: 10;
  cursor: pointer;
}
.Signin__box:nth-child(2) input {
  padding-right: 1.8rem;
}
.Signin__check,
.Signin__check-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Signin__check {
  margin-bottom: 1.5rem;
}
.Signin__check-label,
.Signin__forgot,
.Signin__register {
  font-size: var(--small-font-size);
}

.Signin__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem;
  margin-block: 1rem;
  border-radius: var(--xl);
  background-color: var(--primary);
  color: #fff;
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: 0.5s;
}
/* Input focus move up label */
.Signin__input:focus + .Signin__label {
  top: -12px;
  font-size: var(--small-font-size);
}

/* Input focus sticky top label */
.Signin__input:not(:placeholder-shown).Signin__input:not(:focus)
  + .Signin__label {
  top: -12px;
  font-size: var(--small-font-size);
}
/*=============== END Signin ===============*/

/*=============== START RESPOSIVE ===============*/
/* For medium devices */
@media screen and (max-width: 768px) {
  .start-cont {
    display: none;
  }
  .end-cont {
    width: 100%;
  }
  .cont {
    width: 100%;
    min-width: 100%;
  }

  .form-cont {
    width: 100%;
    padding-inline: 1rem;
  }
  .Signin {
    justify-content: center;
  }
  .Signin__form {
    width: 432px;
    padding: 4rem 3rem 3.5rem;
    border-radius: 1.5rem;
  }
  .Signin__title {
    font-size: 12px;
  }
  .Signin__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .form-cont__logo-bg {
    min-height: 280px;
  }
}
@media screen and (min-width: 600px) {
  .Signin {
    justify-content: center;
  }
  .Signin__form {
    width: 400px;
    padding: 4rem 3rem 3.5rem;
    border-radius: 1.5rem;
  }
  .Signin__title {
    font-size: 2rem;
  }

  .form-cont__logo-bg {
    min-height: 280px;
  }
}

/* For Small devices */
@media screen and (max-width: 800px) {
  .Signin {
    justify-content: center;
  }
  .Signin__form {
    width: 400px;
    padding: 4rem 3rem 3.5rem;
    border-radius: 1.5rem;
  }
}

/*=============== Ampliz Liberay ===============*/
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}
