.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, 60px) clamp(30px, 4vw, 85px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.left_side_inner .btn_group{
    margin-block-start: 14px;
}

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

.left_side .title {
  font-size: clamp(20px, 4vw, 40px);
  font-weight: var(--font_weight_regular);
  line-height: 1.3;
  color: hsl(var(--text_title));
  margin-block: clamp(30px, 4vw, 40px) 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: 16px;
  margin-block-start: 22px;
}
.create {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: hsl(var(--para_text2));
  margin-block-start: auto;
}
.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;
}

.mobile_create{
    display: none;
}

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

  .website_login .side_bg {
    display: none;
  }

  .left_side_inner {
    padding: 30px clamp(20px, 4vw, 30px);
  }
  
  .desktop_create{
      display: none;
  }
  .mobile_create{
    display: flex;
        align-items: center;
        justify-content: flex-end;
}
  .left_side_inner .btn_group{
    margin-block-start: 32px;
}
  
}
