/*Google font*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600;700;800&display=swap");

body {
  background: linear-gradient(
    256deg,
    #2e0c1b 3.13%,
    #6b6bbf 49.82%,
    #feddc2 99.67%
  );
  height: 100vh;
  max-width: 100%;
  width: 100%;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0d0c2e;
}

/*sign in*********************/
.login-title {
  position: relative;
  left: -100px;
  color: #e5e5fe;
  font-family: Poppins;
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 66px */
  margin-bottom: 70px;
}

.log-card {
  width: 530px;
  height: 563px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #e5e5fe;
  padding: 55px;
}

@media (max-width: 576px) {
  .log-card {
    width: 100%;
  }
}

.login-shape {
  width: 362px;
  height: 341px;
}

.auth-left-img-wrapper {
  top: 135px;
  left: -123px;
}

.sign-up .auth-left-img-wrapper {
  top: 175px !important; 
}
.forgot-password .auth-left-img-wrapper {
  top: 165px !important; 
}

.auth-left-img {
  width: 100%;
  height:463px;
  object-fit: cover;
}

.card-auth-title {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  padding-bottom: 34px;
}

.auth-input-wrapper {
  margin-bottom: 10px;
}

.auth-input {
  display: flex;
  width: 100%;
  height: 44px;
  padding: 15px 10px 15px 20px;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(17, 0, 17, 0.05);
  border: none;
}

.auth-input::placeholder {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.auth-submit-wrapper {
  margin-top: 33px;
}

.submit-button {
  width: 100%;
  height: 56px;

  border-radius: 50px;
  background: #6b6bbf;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: none;
  color: #fff;
  margin-bottom: 22px;
}

.divider {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: rgba(152, 162, 179, 1);
  margin-bottom: 24px;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  background-color: silver;
  flex-grow: 1;
}

.divider::before {
  margin-right: 20px;
}

.divider::after {
  margin-left: 20px;
}

.social-badge {
  width: 110px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50px;
  border: 1px solid #6967ba;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

.forgot-password {
  color: #56569f;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}

/******************************/

/*sign up*********************/
.sign-up .log-card {
  padding: 15px 54px;
  height: 680px;
}

.sign-up .log-card .card-auth-title {
  padding-bottom: 12px;
}
.sign-up .log-card .auth-submit-wrapper {
  margin-top: 21px;
}
.in-text {
  color: #0d0c2e;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 21px;
  margin-top: 20px;
}

.in-sub-text {
  color: #0d0c2e;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.in-sub-text a {
  color: #6b6bbf;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}

.checkbox-input-radius .checkbox-radius {
  width: 64px;
  display: block;
  height: 36px;
  border-radius: 37px;
  position: relative;
  cursor: pointer;
  background-color: #0d0c2e;
}

.checkbox-input-radius .checkbox-radius::before {
  content: "";
  width: 33px;
  height: 32px;
  border-radius: 80px;
  background: #ebecef8c;
  position: absolute;
  top: 2px;
  left: 2px;
  -webkit-transition: 300ms left, 300ms background-color;
  transition: 300ms left, 300ms background-color;
}

.checkbox-input-radius input {
  display: none;
}

.checkbox-input-radius input:checked + .checkbox-radius::before {
  left: 29px;
  background: #ebecef;
}


.checkbox-hero .checkbox-span {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #0d0c2e24;
  border: 1px solid #0d0c2e7a;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 300ms background-color, 300ms border-color;
  transition: 300ms background-color, 300ms border-color;
}
.checkbox-hero img{
  width: 15px;
  height: 15px;
}

.checkbox-hero input {
  display: none;
}

.checkbox-hero input:checked + .checkbox-span {
  background: #0d0c2e;
  border-color: #0d0c2e;

}

.aut-arrow-icon-wrapper{
  top: 10px;
  right: 20px;

}



.signUp-modal{
  width: 406px;
  height: 250px;
  background-color:#e5e5fe;
  padding: 25px;
  border-radius: 20px;
}

.signUp-modal h1{
  color: #0D0C2E;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}


.x-icon {
  width: 35px;
  height: 35px;
  background-color: #0d0c2e;
  border-radius: 50%;
}

.modal-dialog.modal-408 {
  max-width: 408px;
}

.signUp-modal .checkbox-hero .checkbox-span{
width: 20px;
height: 20px;
margin-right: 7px;
}

.pointer-evet-auto {
  pointer-events: auto;
}

.modal-backdrop {
  backdrop-filter: blur(5px);
  background-color: #01223770;
  opacity: 1 !important;
}

/******************************/


/*forgot password*/

.forgot-password-text{
  color: #0D0C2E;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
}