@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&display=swap");

* {
  padding: 0x;
  margin: 0px;
  position: relative;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}
.nav-tabs .nav-link.active {
  color: gray !important;
  background-color: #fff !important;
  border-color: #fff !important;
  border-bottom-style: solid !important;
  border-bottom-width: 2px !important;
  border-bottom-color: #008080 !important;
}
/* .nav-tabs .nav-link.active {
 
} */
.nav-tabs .nav-link {
  color: gray;
}

.nav-bg {
  background-color: #008080;
  height: 76px;
  overflow: hidden;
  padding: 20px 18px 20px 18px;
}

.nav-max {
  max-width: 1440px;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  max-width: 204px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.rajdhani-light {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 44px;
  line-height: 55px;
  letter-spacing: 1%;
  margin: 0px;
}

.navbar-text {
  max-width: 204px;
  width: 100%;
  text-decoration: none;
}

/* Style the dropdown button */
.dropbtn {
  background-color: #008080;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* login from */

.login__field {
  padding: 5px;
  position: relative;
}

.login__icon {
  position: absolute;
  top: 15px;
}

.login__input {
  border: none;
  border-bottom: 2px solid #d1d1d4;
  background: none;
  padding: 10px 0px 0px 0px;
  padding-left: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  width: 75%;
  transition: 0.2s;
  max-width: 429px;
  width: 100%;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
  outline: none;
  border-bottom-color: #008080;
}

.login-button {
  background-image: linear-gradient(180deg, #008080 0%, #008080 136.67%);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0px 4px 26px 0px #0c21c11f;
  border-radius: 8px;
  border: none;
  margin-top: 30px;
}



/* ================for custom sccordian=============== */
.cd-accordion__input {
  position: absolute;
  opacity: 0;
}

.cd-accordion__label {
  position: relative;
  display: flex;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  background: var(--cd-color-1);
  box-shadow: inset 0 -1px lightness(var(--cd-color-1), 1.2);
  color: var(--color-white);
}

.cd-accordion__sub {
  display: none;
}

.cd-accordion__input:checked ~ .cd-accordion__sub {
  display: block;
}
.pt-2 {
  margin-top:20px;
}

/* Media Query */
@media (max-width: 768px) {
  .form-control {
    width: 100%;
  }

  .container {
    padding: 15px;
  }

  .dashboard {
    font-size: 12px;
  }

  /* Additional styles for smaller screens */
}

/* Custom styles for tablets */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 720px;
  }

  /* Additional styles for tablets */
}
.btn-primary {
  color: #fff;
  background-color: #008080;
  border-color: #008080;
}