.Login_Modal .modal-content {
  position: relative;
  left: 0;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* BODY */

.Login_Modal .modal-content .modal-body {
  padding: 32px;
  background: #ffffff;
  border-radius: 24px;
}

/* HEADER */

.Login_Modal .modal-content .modal_header_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.Login_Modal .modal-content .logo_holder {
  width: 170px;
  padding: 0;
}

.Login_Modal .modal-content .logo_holder .logo_img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.Login_Modal .password_holder .eye-icc {
  /* top: unset; */
}

/* CLOSE BUTTON */

.Login_Modal .modal-content .modal-body .close_img_div {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.Login_Modal .modal-content .modal-body .close_img_div:hover {
  background: #eceff3;
}

.Login_Modal .modal-content .modal-body .close_img_div .close_img {
  width: 14px;
  height: 14px;
  cursor: pointer;
}

/* INPUTS */
/* .Login_Modal sup.text-danger */
.Login_Modal .gray_input_group {
  margin-bottom: 18px;
}

.Login_Modal .gray_input_group label {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.Login_Modal .gray_input_group .form-control {
  min-height: 40px;
  border-radius: 14px;
  border: 1px solid #dbe3ec;
  background: #fafbfd;
  padding: 0 18px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.Login_Modal .gray_input_group .form-control:focus {
  border-color: #000;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

/* PASSWORD */

.password_holder {
  position: relative;
}

.password_holder .eye-icc .icon {
  font-size: 17px;
  color: #64748b;
  cursor: pointer;
  transition: 0.3s ease;
}

.password_holder .eye-icc .icon:hover {
  color: #000;
}

/* FORGOT PASSWORD */

.Login_Modal .modal-content .modal-body .link_text {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  transition: all 0.3s ease;
}

.Login_Modal .modal-content .modal-body .link_text:hover {
  color: #000;
  text-decoration: underline;
}

/* BUTTON */

.Login_Modal .modal-content .modal-body .btn_holder {
  margin-top: 25px;
}

.Login_Modal .modal-content .modal-body .btn_holder .Black_btn_holder {
  margin: 0;
}

.Login_Modal .modal-content .modal-body .btn_holder .Black_btn_holder .Black_Btn {
  width: 100%;
  height: 54px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  align-items: center;
}

/* CREATE ACCOUNT TEXT */

.Login_Modal .modal-content .modal-body .dark_text {
  margin-top: 22px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #475569;
  line-height: 1.7;
}

/* DIVIDER */

.Login_Modal .modal-content .modal-body .or_text_div {
  position: relative;
  margin: 25px 0;
}

.Login_Modal .modal-content .modal-body .or_text_div::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #e2e8f0;
  left: 0;
  top: 50%;
}

.Login_Modal .modal-content .modal-body .or_txt {
  width: fit-content;
  margin: auto;
  padding: 0 16px;
  background: #fff;
  position: relative;
  z-index: 2;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

/* GOOGLE LOGIN */

.Login_Modal .modal-content .modal-body .google_img_holder {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}

.Login_Modal .modal-content .modal-body .google_img_holder .img_holder {
  width: 34px;
  height: 34px;
}

.Login_Modal .modal-content .modal-body .google_img_holder .img_holder .g_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.Login_Modal .modal-content .modal-body .google_img_holder .signu_with_g_txt {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

/* ERROR */

/* .Login_Modal sup.text-danger {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
} */

.signup_div {
  height: 450px;
  overflow: auto;
  scrollbar-width: none;
}

/* MOBILE */

@media (min-width: 0px) and (max-width: 767px) {
  .Login_Modal .modal-content {
    margin: 15px;
    border-radius: 20px;
  }

  .Login_Modal .modal-content .modal-body {
    padding: 22px;
  }

  .Login_Modal .modal-content .logo_holder {
    width: 130px;
  }

  .Login_Modal .modal-content .modal-body .dark_text {
    font-size: 14px;
  }

  .Login_Modal .modal-content .modal-body .google_img_holder .signu_with_g_txt {
    font-size: 13px;
  }
}