/*
	===============================
			@Import	Function
	===============================
*/
/*
	===============================
			@Import	Mixins
	===============================
*/
/* 

--------------Auth Sign In Boxed------------

*/
/* 

Sign In

*/
body.dark.page-auth-boxed::before {
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  top: 0;
  bottom: 0;
  opacity: 0.24;
  position: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("/emo26/html/src/assets/img/pages/auth/bg-auth.jpg");
}
body.dark.page-auth-boxed .navbar {
  background-color: transparent;
}
body.dark #auth-boxed {
  position: relative;
  height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  margin-top: 74px;
}
body.dark #auth-boxed .auth-cover h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark_100);
}
body.dark #auth-boxed .auth-cover p {
  font-size: 16px;
  color: #abacb2;
  font-weight: 500;
}
body.dark #auth-boxed .card {
  box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, rgba(9, 10, 11, 0.65) 0px 12px 24px -4px;
  background: #16181e;
  border: none;
}
body.dark #auth-boxed .card-body .company-img {
  width: 96px;
  height: 96px;
  position: relative;
  display: inline-flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
body.dark #auth-boxed .card-body .company-img .ci-overlay {
  width: 100%;
  height: 100%;
  opacity: 0.16;
  position: absolute;
  border-radius: 50%;
  transition: 0.5s;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 35%, #f57e93 100%);
  animation: mymove 5s infinite linear;
}
body.dark #auth-boxed .card-body .company-img img {
  width: 70px;
  height: 70px;
}
body.dark #auth-boxed .card-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark_100);
  margin-bottom: 3px;
}
body.dark #auth-boxed .card-body p {
  font-size: 13px;
  color: #abacb2;
  font-weight: 500;
}
body.dark #auth-boxed .card-body p a {
  color: #f9a9b7;
  font-weight: 500;
}
body.dark #auth-boxed .card-body .pass-reset {
  font-size: 13px;
  margin-bottom: 8px;
}
body.dark #auth-boxed .card-body .pass-reset a {
  font-weight: 400;
  color: var(--primary_100);
}
body.dark #auth-boxed .card-body .seperator {
  position: relative;
}
body.dark #auth-boxed .card-body .seperator hr {
  border-top: 1px dashed #cbcbcf;
}
body.dark #auth-boxed .card-body .seperator .seperator-text {
  text-align: center;
  position: absolute;
  top: -11px;
  width: 100%;
  left: 0;
  right: 0;
}
body.dark #auth-boxed .card-body .seperator .seperator-text span {
  background: #16181e;
  padding: 4px 8px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  border-radius: 25px;
}
body.dark #auth-boxed .card-body .btn-social-link {
  display: flex;
  align-items: center;
  border: none;
  background-color: transparent;
  position: relative;
}
body.dark #auth-boxed .card-body .btn-social-link:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background: #292b38;
  z-index: 0;
  border-radius: 48px;
  left: -2px;
  right: -3px;
  opacity: 0;
  margin: 0 auto;
  transition: 0.4s;
}
body.dark #auth-boxed .card-body .btn-social-link:hover:before {
  opacity: 1;
}
body.dark #auth-boxed .card-body .btn-social-link svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}
body.dark #auth-boxed .card-body .btn-social-link.btn-social-google svg, body.dark #auth-boxed .card-body .btn-social-link.btn-social-github svg, body.dark #auth-boxed .card-body .btn-social-link.btn-social-x svg {
  fill: #cbcbcf;
}
@keyframes mymove {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 991px) {
  body.dark.page-auth-boxed .navbar .navbar-nav .nav-item .nav-link {
    padding: 0 14px;
  }
  body.dark #auth-boxed {
    height: auto;
    padding: 50px 0;
  }
}
@media (max-height: 800px) {
  body.dark #auth-boxed {
    height: auto;
    padding: 50px 10px;
  }
}

