:root {
  --color-primary: #001A6B;
  --color-primary-subtle: #F5F7FF;
  --color-primary-lighter:#C7D5FF;
  --bs-body-bg:var(--color-primary-subtle);
  --card-bg:#fff;
}

[data-bs-theme=dark]:root {
  --color-primary-subtle: #1E2027;
  --color-primary-lighter:#1E2027;
  --bs-body-bg: #212529;
  --card-bg:#15171C;
}

.aside {
  background: var(--color-primary);
  width: 80px;
  height: calc(100% - 20px);
  position: fixed;
  top: 4px;
  right: 4px;
  z-index: 100;
  transition: all 0.35s ease-in-out;
  transform: translateX(90px);
}
.aside.show {
  display: flex !important;
  transform: translateX(0);
}
@media (min-width: 768px) {
  .aside {
    transform: translateX(0);
  }
}

svg.icon {
  width: 16px;
  height: 16px;
}

.card {
  border-color: var(--color-primary-lighter);
  background: var(--card-bg);
}

.navbar {
  margin-top: 4px;
  width: calc(100% - 4px);
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: var(--bs-box-shadow-sm);
}

[data-bs-theme=light] .theme-dark-show {
  display: none;
}

[data-bs-theme=light] .theme-light-show {
  display: block;
}

[data-bs-theme=dark] .theme-dark-show {
  display: block;
}

[data-bs-theme=dark] .theme-light-show {
  display: none;
}

@media (min-width: 768px) {
  .content {
    padding-right: 90px !important;
  }
}
.content header {
  background: #fff;
  width: 100%;
  box-shadow: var(--bs-box-shadow-sm);
}

.banner {
  background-image: url("/assets/images/backgrounds/bg1.jpg");
  background-size: cover;
  background-position: center;
  height: calc(100vh - 50px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-right-radius: 200px;
}
.banner img {
  width: 170px;
  height: auto;
}

.form-control {
  font-size: 0.8rem;
  line-height: 2rem;
  background: var(--color-primary-subtle);
}

.form-select {
  font-size: 14px;
}

#togglePassword {
  cursor: pointer;
  background: transparent;
  border: 0;
  position: absolute;
  left: 0px;
  top: 8px;
  z-index: 22;
}
#togglePassword svg {
  color: var(--bs-primary);
  fill: var(--bs-primary);
}
#togglePassword .eye-on {
  display: none;
}
#togglePassword.showpassword .eye-on {
  display: inline;
}
#togglePassword.showpassword .eye-off {
  display: none;
}

.toastr-message {
  font-size: 0.7rem !important;
}

.social-login-btns {
  gap: 20px;
}
.social-login-btns .btn-icon {
  background: var(--color-primary-subtle);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.social-login-btns .btn-icon:hover {
  background: var(--bs-gray-200);
  box-shadow: var(--bs-box-shadow-sm);
}

.form-control {
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */