.main {
  height: 100vh;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;

  background-image: url("../../public/images/auth/bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;

  padding: 28px;
}

.main .left {
  width: 65%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  /* img {
      width: 35%;
      margin-left: -20%;
    } */
  @media (max-width: 991px) {
    display: none;
  }
}

/* .main .right {
  width: 100%;
  position: absolute;
  max-width: 46%;
  right: 30px;
  margin: auto auto auto auto;
  top: 30px;
  bottom: 30px;
  border-radius: 20px;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  overflow: auto;
  scrollbar-width: 0;
  &::-webkit-scrollbar {
    width: 0;
  }
} */
.main .right {
  width: 900px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  background-image: url("../../public/images/auth/formBg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 18px;
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

.heading {
  font-size: 56px;
  font-weight: 700;
  color: #1e1e1e;
  text-align: center;
  font-family: switzerBold, sans-serif;
}
.heading img {
  width: 40px;
  height: auto;
}

.text {
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
  color: var(--gryColor);
}

.main .right .form_wrapper {
  width: 100%;
  /* height: 80%; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 70px;
  margin-top: 2rem;
}
.main .right .form_wrapper .textGroup {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.form_wrapper .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.form_wrapper .formGroup .inputLable {
  margin-left: 12px;
  font-size: 18px;
}
.form_wrapper .formGroup .input_group {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 65px;
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid rgba(33, 104, 176, 0.2);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
  padding: 0 0.8rem;
  gap: 10px;
  transition: 0.2s;
}
.form_wrapper .formGroup .input_group .icon2 {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.form_wrapper .formGroup .input_group:hover,
.form_wrapper .formGroup .input_group:focus {
  border-color: #2175cd;
}
.form_wrapper .formGroup .input_group img {
  width: 28px;
}
.form_wrapper .formGroup .input_group input {
  width: 94%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 300;
}
.form_wrapper .inlineGroup {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1e1e1e;
}
.form_wrapper .inlineGroup a {
  text-decoration: underline;
  font-size: 18px;
  color: #1e1e1e;
  transition: 0.3s;

  &:hover {
    opacity: 0.8;
  }
}
.form_wrapper .inlineGroup .inputWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.form_wrapper .inlineGroup .inputWrapper input {
  height: 100%;
  width: 20px;
  opacity: 0;
  position: absolute;
  left: 0px;
  z-index: 11111;
  cursor: pointer;
}

.form_wrapper .inlineGroup .inputWrapper label {
  font-size: 18px;
  color: #1e1e1e;
  cursor: pointer;
  padding-left: 10px;
  transition: 0.3s;

  &:hover {
    opacity: 0.8;
  }
}

.form_wrapper .inlineGroup .inputWrapper .checkmark {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2168b0;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  position: relative;
}
.form_wrapper .inlineGroup .inputWrapper > .checkmark::before {
  content: "✔";
  position: absolute;
  top: -2px;
  left: 2px;
  border-radius: 0%;
  transform: scale(0);
  transition: all 0.3s;
  color: #1f63a8;
}
.form_wrapper
  .inlineGroup
  .inputWrapper
  .checkboxButton:checked
  ~ .checkmark::before {
  transform: scale(1);
}
.form_wrapper .formBTN {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 25px;
}
.form_wrapper button {
  position: relative;
  height: 56px;
  border: none;
  outline: none;
  border-radius: 16px;
  font-size: 22px;
  line-height: 22px;
  color: #fff;
  font-family: "switzerBold", sans-serif;
  background: #1631ef;
  background: linear-gradient(69deg, #1631ef 0%, #0d1a73 100%);
  cursor: pointer;
  transition: 0.3s;
}
.form_wrapper button:hover {
  opacity: 0.8;
}

.form_wrapper button.SecondBtn {
  background: transparent;
  border: 1px solid #7b7b7b;
  box-shadow: 0 16px 24px 0 rgba(33, 104, 176, 0.24);
  color: #7b7b7b;
}

.otpDiv {
  height: auto;
  width: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  margin: 10px auto;
}
.otpDiv > div > input {
  width: 1em;
  text-align: center;
  min-width: 55px;
  height: 55px;
  margin-right: 8px;
  border-radius: 10px;
  border: 1px solid rgba(33, 104, 176, 1);
  text-align: center;
  font-size: 20px;
  background: #ffffff;
  color: #000;
  margin-bottom: 20px;
  transition: all 0.3s;
  outline: none !important;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
}

.expireCode {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.expireCode p {
  font-size: 20px;
  color: #1e1e1e;
}
.expireCode > p > span {
  color: #1631ef;
  font-family: switzerBold, sans-serif;
}

/* MEDIA Query */
@media screen and (max-width: 712px) {
  .main .right {
    padding: 3rem;
  }
}

@media screen and (max-width: 600px) {
  .main {
    padding: 30px 0;
  }
  .main .right {
    width: 90%;
    max-height: 530px;
    margin: auto;
    padding: 16px;
    justify-content: flex-end;

    height: unset;
    min-height: 300px;
    padding-top: 38px;
  }
  .heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 24px;
  }
  .heading img {
    width: 24px;
  }
  .text {
    font-size: 14px;
    margin-top: 0.5rem;
  }
  .text br {
    display: none;
  }
  .form_wrapper .formGroup .input_group {
    height: 52px;
    border-radius: 12px;
  }
  .form_wrapper .formGroup .inputLable {
    font-size: 14px;
  }
  .form_wrapper .formGroup {
    gap: 6px;
  }
  .form_wrapper .formGroup .input_group img {
    width: 18px;
  }
  .form_wrapper .formGroup .input_group input {
    font-size: 14px;
  }
  .form_wrapper .inlineGroup .inputWrapper label,
  .form_wrapper .inlineGroup a {
    font-size: 14px;
  }
  .form_wrapper .inlineGroup .inputWrapper .checkmark {
    width: 16px;
    height: 16px;
  }
  .form_wrapper .inlineGroup .inputWrapper input {
    width: 16px;
  }
  .form_wrapper button {
    height: 45px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 14px;
  }
  .main .right .form_wrapper .textGroup {
    gap: 18px;
  }
  .form_wrapper
    .inlineGroup
    .inputWrapper
    .checkboxButton:checked
    ~ .checkmark::before {
    transform: scale(0.8);
  }
  .form_wrapper .inlineGroup .inputWrapper > .checkmark::before {
    top: -4px;
    left: 0px;
  }
  .form_wrapper .inlineGroup {
    margin-top: 1rem;
  }
  .otpDiv > div > input {
    min-width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .form_wrapper .formBTN {
    gap: 14px;
  }
  .expireCode p {
    font-size: 14px;
  }
}
