.login_section {
  height: 100vh;
  position: relative;
  padding: 32px 20px;
}
.login_section ._login_fields {
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: end;
  width: 40%;
  flex-direction: column;
}
.login_section ._login_fields .logo {
    max-width: 210px;
}
.login_section ._login_fields .logo img{
  object-fit: cover;
  margin-left: -30px;
  width: 100%;
}
.login_section .login_Content {
  max-width: 390px;
  width: 100%;
}
.login_section .login_Content h2 {
  color: var(--text_primary);
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 28px;
}

.login_section {
  display: flex;
  justify-content: space-between;
}

._login_images {
  width: 50%;
  display: flex;
  justify-content: right;
}
.login_section .login_Content p {
  color: var(--text_secondary);
  margin-bottom: 40px;
}

.login_section .login_Content form label {
  width: 100%;
  display: block;
  margin-bottom: 8px;
}

.login_section .login_Content form input {
  margin-bottom: 24px;
}

.login_section .login_Content form a {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  display: block;
  text-align: right;
  margin-bottom: 24px;
}

.login_section .or_section::before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: var(--border_primary);
  width: 100%;
}
.login_section .or_section {
  max-width: 390px;
  width: 100%;
  margin: 48px 0px;
  position: relative;
}
.login_section .or_section::after {
  content: "OR";
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translate(-50%);
  background: #fff;
  padding: 0px 10px;
}

/* sign in with ? section css  */

.login_auth_with {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 390px;
}
.login_auth_with button {
  background-color: #f3f9fa;
  border: none;
  font-size: 14px;
  color: var(--text_secondary);
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 10px;
  cursor: pointer;
}
.login_auth_with p {
  text-align: center;
  margin-top: 22px;
  font-size: 18px;
  color: #122b31;
}

/* right image section css start from here  */
.login_right_image_section {
  position: relative;
}
.login_right_image_section img {
  height: 100%;
  width: auto;
}

.login_right_image_section .card_item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  padding: 40px 30px 30px 30px;
  max-width: 510px;
  width: 100%;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.login_right_image_section .card_item .header_of_card {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.login_right_image_section .card_item img:nth-child(1) {
  max-width: 123px;
}
.login_right_image_section .card_qr_ofChip {
  margin: 50px 0px 30px;
}
.login_right_image_section .card_body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card_body .card_body_content p {
  font-size: 16px;
  color: #474c5f;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
}
.card_body .card_body_content p:nth-child(2) {
  font-weight: 400;
  letter-spacing: 5px;
  margin-top: 10px;
}

/* media css start from here  */

@media screen and (max-width:1620px) {
  .login_section ._login_fields {
    width: 30%;
  }
  ._login_images {
    width: 70%;
  }
}

@media screen and (max-width: 1350px) {
  .login_section ._login_fields {
    width: 40%;
  }
  ._login_images {
    width: 50%;
  }
  .login_right_image_section {
    position: relative;
    width: 100%;
  }
  .login_right_image_section > img {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .login_right_image_section .card_item {
    max-width: 90%;
  }
  .login_right_image_section > img {
    object-fit: cover;
  }
}
@media screen and (max-width: 1024px) {
  .login_right_image_section .card_item {
    max-width: 90%;
  }
  .login_section .login_Content h2 {
    font-size: 30px;
    margin-bottom: 18px;
  }
  .login_section .login_Content p {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .login_auth_with button {
    padding: 12px 10px;
  }
  .login_auth_with button img {
    max-width: 22px;
  }
  .login_auth_with p {
    font-size: 16px;
  }
  .login_right_image_section .card_item img:nth-child(1) {
    max-width: 100px;
  }
  .login_right_image_section .card_qr_ofChip {
    margin: 30px 0px 20px;
  }
  .login_right_image_section .card_qr_ofChip img {
    max-width: 50px;
  }
  .card_body .card_body_content p {
    font-size: 15px;
  }
}

@media screen and (max-width: 991px) {
  ._login_images {
    width: 57%;
  }
}

@media screen and (max-width: 767px) {
  .login_section {
    flex-direction: column;
    padding: 20px;
    height: auto;
  }
  .login_section ._login_fields {
    width: 100%;
    align-items: center;
  }
  .login_section .login_Content,
  .login_section .or_section,
  .login_auth_with{
    max-width: 100%;
  }
  .login_section .login_Content h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .login_section .login_Content p {
    font-size: 14px;
  }
  .login_section .login_Content form a{
    margin-bottom: 15px;
  }
  .login_section .or_section{
    margin: 38px 0px;
  }
  .login_auth_with button{
    padding: 10px;
  }
  ._login_images{
    /* width: 100%; */
    display: none;
  }
  .login_right_image_section{
    margin-top: 20px;
  }
  .login_right_image_section .card_item {
    max-width: 95%;
    padding: 20px;
}
.login_right_image_section img{
  height: auto;
}
.login_right_image_section .card_item img:nth-child(1) {
  max-width: 90px;
}
.login_right_image_section .card_qr_ofChip img{
  max-width: 40px !important;
}
.login_right_image_section .card_qr_ofChip {
  margin: 20px 0px 10px;
}
.login_right_image_section img:nth-child(2){
  max-width: 70px;
}
.login_section ._login_fields .logo {
  max-width: 170px;
}
}
