@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
body {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

.sidebar {
  height: 100vh;
}

/* .navbar-expand-lg {
  background-color: #1d2737;
  padding: 15px;
  color: white;
  width: 320px; 
  min-height: 100vh;
  position: fixed;
  left: 0;
  top: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Poppins", sans-serif;
} */

.nav-item {
  color: white;
}

.navbar ul {
  list-style-type: none;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

.navbar li {
  margin-bottom: 10px;
}

.navbar a {
  font-family: "Poppins", sans-serif;
}

.content {
  margin-left: 220px; /* Adjust margin to make space for the navbar */
  padding: 20px;
}

/* Home page styling  */
.home-page-title {
  font-family: "Poppins", sans-serif;
  font-size: 32;
  font-weight: 600;
  margin-top: 64px;
}

.home-page-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 20;
  font-weight: 500;
  margin-top: 16px;
}

.auth-gradient {
  background: url(../images/rec226.png);
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.min-h-100 {
  min-height: 100vh;
}
.per-h-100 {
  height: 100%;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.fs-12 {
  font-size: 12px;
}
.fs-14 {
  font-size: 14px;
}
.fs-18 {
  font-size: 18px;
}
.fs-32 {
  font-size: 32px;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.bb-green {
  margin-top: -10px;
  width: max-content;
  line-height: 20px;
  border-bottom: 6px solid #00faa4;
}
.form-label {
  font-size: 14px;
  font-weight: 400;
}
.form-control {
  padding: 11px 16px;
  font-size: 16px;
  border: 1px solid #6c7589;
}
.form-control:focus-within {
  box-shadow: 0 0 0 0.25rem #434c5e;
  border: 1px solid #6c7589;
}
.color-a {
  color: #065068;
}
.color-blue {
  color: #434c5e;
}
.color-muted {
  color: #97a1b6;
}
.logo {
  height: 40px;
  width: auto;
}

.btn-login {
  outline: none;
  border: none;
  padding: 12px 32px;
  color: #ffffff !important;
  background-color: #1d2737;
  border-radius: 100px;
  display: flex;
  align-items: center;
  width: fit-content;
}
.r-pass {
  outline: 0;
  border: 0;
}
.theme-pill {
  border-radius: 10px;
  border: 1px solid #212325;
  padding: 16px;
}
.load-card {
  padding: 21px;
  border-radius: 10px;
  border: 1px solid#F3FAFF;
  box-shadow: 0px 2px 10px 0px rgba(29, 39, 55, 0.12);
}

.progress-bar {
  background-color: #00faa4;
}
.progress {
  background-color: #dbe2f1;
}
.green-pill {
  padding-right: 16px;
  padding-left: 16px;
  font-size: 10px;
  border-radius: 100px;
  border: 1px solid #1ca777;
  color: #1ca777;
  background: #cdfbe4;
  min-height: 26px;
  display: flex;
  align-items: center;
  width: fit-content;
}

/* Remove autocomplete background color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  background-color: transparent !important;
}

/* Additional styles to prevent yellow background color in Chrome */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

/* sidenav  */
.side-nav-a {
  display: inline-flex;
  padding: 12px 24px;
  justify-content: start;
  align-items: center;
  border-radius: 10px;
  background: transparent;
  margin-bottom: 16px;
  color: #ffffff;
  transition: 0.25s;
}
.side-nav-a:hover {
  transition: 0.25s;
  background: #434c5e;
  color: #ffffff;
}
.side-nav-active {
  background: #434c5e;
}
/* sidenav  ends*/
.page-outer {
  /* height: 100vh;
  overflow-y: auto; */
  padding-top: 64px;
  padding-bottom: 64px;
}
.bg-theme {
  background-color: #1d2737;
}
@media (min-device-width: 992px) {
  .side-nav-smarto {
    display: flex;
    flex-direction: column !important;
  }
}
