.website_login {
  width: 100%;
  height: 100%;
}

.website_login .inner_form {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.website_login .side_bg {
  width: 100%;
  height: 100vh;
  display: flex;
}
.website_login .side_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.left_side {
  width: 100%;
}
.left_side_inner {
  width: 100%;
  padding: clamp(50px, 4vw, 70px) clamp(30px, 4vw, 85px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.left_side_inner.signIn {
  padding: clamp(30px, 4vw, 30px) clamp(30px, 4vw, 85px);
}

.left_side .title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: var(--font_weight_regular);
  line-height: 1.3;
  color: hsl(var(--text_title));
  max-width: 400px;
  margin-block: clamp(30px, 4vw, 38px) 0;
}

/* .left_side .sub_text {
  font-size: clamp(16px, 4vw, 18px);
  color: hsl(var(--para_text));
  margin-block: 20px 0;
  max-width: 300px;
} */

.left_side .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-block-start: 30px;
}
.create {
  width: 100%;
  font-size: 13px;
  color: hsl(var(--text_title));
  margin-block-start: auto;
  font-weight: var(--font_weight_semiBold);
}

.btn_group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-block-start: 30px;
}

/* .link {
  color: hsl(var(--para_text2));
  text-decoration: underline;
  cursor: pointer;
}
.resend_code {
  color: hsl(var(--para_text2));
  text-decoration: underline;
  cursor: pointer;
} */

/* .otp_wapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 450px;
} */

@media (max-width: 767px) {
  .website_login .inner_form {
    grid-template-columns: 1fr;
  }

  .website_login .side_bg {
    display: none;
  }

  .left_side_inner {
    padding: clamp(50px, 10vw, 60px) 20px;
  }
}
