* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter";
}

/* ------- login_page css -------- */
.login_page .container_fluid {
  max-width: 55%;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px; 
}

.login_page .login_logo h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.login_page .login_logo {
  text-align: center;
}

.login_page .login_logo img {
  width: 81px;
  height: 81px;
}

.login_page .login_deatils {
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #e1e1e1;
  box-shadow: 0px 0px 20px 0px #0000000d;
  background: #f2f2f2;
}

.login_page .login_deatils .input_field {
  height: 88px;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}

.login_page .login_deatils input {
  border: none;
  padding: 10px;
  width: 100%;
  outline: none;
  margin-top: 3px;
  border-bottom: 1px solid #9c9898;
}

.login_page .login_deatils select {
  border: none;
  padding: 10px;
  width: 100%;
  outline: none;
  margin-top: 3px;
  border-bottom: 1px solid #9c9898;
}

.login_page .login_deatils input::placeholder {
  font-size: 1rem;
  font-weight: 700;
  color: #898989;
}

.login_page .login_deatils h4 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 32px;
}
.login_page .login_deatils a {
  text-decoration: none;
  color: black;
}

.login_page .login_deatils .login_btn button {
  width: 149px;
  height: 48px;
  padding: 0px 16px;
  border-radius: 10px;
  background: #000000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
  box-shadow: 0px 10px 15px -3px #0000001a;
}

.login_page .login_deatils .login_btn {
  display: flex;
  justify-content: center;
  margin-top: 33px !important;
}

.login_page .login_deatils .login_btn .active_btn {
  background: transparent;
  border: 1px solid #000000;
  box-shadow: 0px 10px 15px -3px #0000001a;
  color: #000000;
}

.login_page .login_deatils .forget {
  margin-top: 27px;
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
}

.login_page .login_deatils .forget a {
  color: #000000;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .login_page .container_fluid {
    max-width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .login_page .container_fluid {
    max-width: 85%;
  }
}

@media screen and (max-width: 575px) {
  .login_page .container_fluid {
    max-width: 90%;
  }
}

@media screen and (max-width: 375px) {
  .login_page .login_deatils .login_btn button {
    width: 100%;
  }

  .login_page .login_deatils .login_btn {
    flex-direction: column;
    align-items: center;
  }

  .login_page .login_deatils {
    padding: 20px;
  }

  img {
    object-fit: contain;
  }
}
