body,
html {
  font-family: poppins;
  margin: 0;
}

/* Navbar Section*/
.navbar {
  padding: 30px 10px !important;
}
.navbar-nav .nav-link {
  font-size: 18px;
  font-weight: bold;
  position: relative;
}
.navbar-nav {
  display: flex;
  gap: 40px; /* Increase spacing between menu items */
}

.dropdown-menu {
  min-width: 150px;
}
.btn-login {
  background: white;
  color: #0c9aac;
  border: 2px solid white;
  padding: 6px 20px;
  font-weight: bold;
}
.btn-signup {
  background: #0c9aac;
  color: white;
  border: 2px solid #0c9aac;
  padding: 6px 20px;
  font-weight: bold;
}
.bottom-line {
  position: relative;
  display: inline-block; /* Ensures the underline is only as wide as the text */
  padding-bottom: 5px; /* Adds some space below the text */
}

.bottom-line::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 50%;
  width: 0; /* Initially hidden */
  height: 3.5px;
  background-color: #0c9aac;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}
.bottom-line:hover::after {
  width: 100%; /* Expands to text width */
  left: 0;
}
.active-page::after {
  width: 100% !important;
  left: 0;
}
.kjf:hover {
  border: 1px solid #0c9aac !important;
  color: #0c9aac !important;
}
.kjf:focus {
  border: 1px solid #0c9aac !important;
  color: #0c9aac !important;
}
.login-signup {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: -15px !important;
}
.login-signup a {
  list-style: none !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: bold !important;
}
.login {
  color: #0c9aac !important;
  padding: 6px 37px 6px 37px !important;
  border-radius: 5px !important;
  border: 2px solid white !important;
  transition: 0.3s ease !important;
  font-weight: bold !important;
  position: relative !important;
}
.login.active-page::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -5px !important;
  width: 100% !important;
  height: 4px !important;
  background-color: #0c9aac !important;
  transition: width 0.3s ease-in-out !important;
}
.signup {
  color: white !important;
  background-color: #0c9aac !important;
  border: 2px solid #0c9aac !important;
  padding: 6px 37px 6px 37px !important;
  border-radius: 5px !important;
  box-shadow: 0 6px 10px rgb(232, 232, 232) !important;
  transition: 0.3s ease !important;
}
.signup:hover {
  color: #0c9aac !important;
  border: 2px solid #0c9aac !important;
  transition: 0.3s ease !important;
  background-color: transparent !important;
  box-shadow: 0 6px 10px rgb(238, 238, 238) !important;
}

/* login and signup button*/

/* End of navbar*/

/*Login details and picture*/
.login-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  background-color: #f1f3f6;
  color: #555555;
  transition: color 0.3s ease;
}
.login-tab {
  display: flex;
  flex-direction: column;
  gap: 20px;

  background-color: white;

  padding-left: 150px;
  padding-right: 150px;
  padding-top: 20px;
  transition: color 0.3s ease;
}
.login-tab h2 {
  color: #0c9aac;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  text-align: center;
  padding-bottom: 30px;
}
.login-tab p {
  margin-top: -30px;
}
.login-tab input {
  border-radius: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  background-color: #f1f3f6;
  color: #555555;
  transition: color 0.3s ease;
  width: 332px;
}
.login-tab input:focus {
  border: none;
  outline: none;
}

.fullname-input {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: -30px;
  transition: color 0.3s ease;
  padding-bottom: 30px;
}
.fullname-input input {
  border-radius: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 137px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #555555;
  transition: color 0.3s ease;
}
.login-tab a {
  list-style: none;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  margin-top: 40px;
  text-align: center;
}
.signup-big {
  color: white;
  background-color: #0c9aac;
  border: 2px solid #0c9aac;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 5px;
  box-shadow: 0 6px 10px rgb(232, 232, 232);
  transition: 0.3s ease;
}
.signup-big:hover {
  background-color: transparent;
  color: #0c9aac;
  transition: 0.3s ease;
  box-shadow: 0 6px 10px rgb(217, 217, 217);
}
.login-big {
  color: #0c9aac;
  background-color: transparent;
  border: 2px solid #0c9aac;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 5px;
  box-shadow: 0 6px 10px rgb(232, 232, 232);
  transition: 0.3s ease;
}
.login-big:hover {
  background-color: #0c9aac;
  color: white;
  transition: 0.3s ease;
  box-shadow: 0 6px 10px rgb(217, 217, 217);
}

/*Password eye*/
.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.password-wrapper input {
  width: calc(100% - 4px);
  padding-right: 40px;
  transition: color 0.3s ease;
}
.password-wrapper .toggle-password {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 19px;
  color: #ffffff;
  background-color: #0c9aac;
  border-radius: 8px;
  padding: 8px;
  padding-left: 14px;
  padding-right: 14px;
  margin-top: -15px;
  transition: color 0.3s ease;
}

.or-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -10px;
  gap: 10px;
}
.or-container .line {
  flex: 1;
  border: none;
  border-top: 1px solid #d3d3d3;
}
.or-container .or-text {
  color: #a0a0a0;
  font-weight: 500;
  font-size: 14px;
}

.login-container img {
  width: 633px;
  height: 100%;
  margin-left: 150px;
  margin-top: 120px;
}
/*footer*/
.footer {
  background-color: #252641;
  padding: 50px 0;
}

.footer h3 {
  color: #b2b3cf;
  font-size: 22px;
  font-weight: 400;
}

.input-for-gmail {
  background-color: transparent;
  color: #83839a;
  border: 1px solid #83839a;
  border-radius: 80px;
  padding: 15px 20px;
  font-size: 18px;
  width: 100%;
}

.subscribe {
  border: none;
  background-color: #0c9aac;
  border: 2px solid #0c9aac;
  border-radius: 80px;
  font-size: 18px;
  color: white;
  font-weight: 500;
  padding: 15px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe:hover {
  background-color: transparent;
  border: 2px solid #0c9aac;
  color: #0c9aac;
}

/* Popup */
.popup-message {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4caf50;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-size: 16px;
}

.popup-message.error {
  background-color: #f44336;
}

.popup-message.success {
  background-color: #4caf50;
}
.inputforsearch:focus {
  box-shadow: none !important;
}

.signup-btn {
  background-color: #0097a7;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  width: 100%;
  font-size: 16px;
}
.signup-btn:hover {
  background-color: #007a8a;
}
.login-link {
  color: #007a8a;
  text-decoration: none;
  font-weight: 600;
}
.password-wrapper {
  position: relative;
}
.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 10px 0;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}
.divider:not(:empty)::before {
  margin-right: 10px;
}
.divider:not(:empty)::after {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .logandsign {
    flex-direction: column !important;
  }
  .mavul {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .navbar-nav {
    gap: 10px !important;
  }
  .kjf {
    margin-bottom: 10px !important;
    width: 100% !important;
  }
  .img1 {
    display: none;
  }
  .pojj {
    display: none !important;
  }
  .fd {
    display: none !important;
  }
  .mtp {
    margin-top: 0px !important;
  }
  .ingg {
    display: none !important;
  }
}
