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

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

*/
/* 

Sign In

*/
body.page-auth-boxed::before {
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  top: 0;
  bottom: 0;
  opacity: 0.2;
  position: fixed;
  background: #f2f6f6;
}
body.page-auth-boxed .navbar {
  background-color: transparent;
}

#auth-boxed {
  position: relative;
  height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  margin-top: 74px;
}
#auth-boxed .auth-cover h1 {
  font-size: 32px;
  font-weight: 800;
  color: #000;
}
#auth-boxed .auth-cover p {
  font-size: 16px;
  color: #6c6e78;
  font-weight: 500;
}
#auth-boxed .card {
  border: none;
}
#auth-boxed .card-body .company-img {
  width: 96px;
  height: 96px;
  position: relative;
  display: inline-flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
#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;
}
#auth-boxed .card-body .company-img img {
  width: 70px;
  height: 70px;
}
#auth-boxed .card-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 3px;
}
#auth-boxed .card-body p {
  font-size: 13px;
  color: #6c6e78;
  font-weight: 500;
}
#auth-boxed .card-body p a {
  color: #d72444;
  font-weight: 600;
}
#auth-boxed .card-body .pass-reset {
  font-size: 13px;
  margin-bottom: 8px;
}
#auth-boxed .card-body .pass-reset a {
  font-weight: 500;
  color: #ee284b;
}
#auth-boxed .card-body .seperator {
  position: relative;
}
#auth-boxed .card-body .seperator hr {
  border-top: 1px dashed #000;
}
#auth-boxed .card-body .seperator .seperator-text {
  text-align: center;
  position: absolute;
  top: -11px;
  width: 100%;
  left: 0;
  right: 0;
}
#auth-boxed .card-body .seperator .seperator-text span {
  background: #fff;
  padding: 4px 8px;
  font-size: 15px;
  color: #3d1863;
  font-weight: 700;
  border-radius: 25px;
}
#auth-boxed .card-body .btn-social-link {
  display: flex;
  align-items: center;
  border: none;
  background-color: transparent;
  position: relative;
}
#auth-boxed .card-body .btn-social-link:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background: #f5f5f5;
  z-index: 0;
  border-radius: 48px;
  left: -2px;
  right: -3px;
  opacity: 0;
  margin: 0 auto;
  transition: 0.4s;
}
#auth-boxed .card-body .btn-social-link:hover:before {
  opacity: 1;
}
#auth-boxed .card-body .btn-social-link svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}
#auth-boxed .card-body .btn-social-link.btn-social-google svg, #auth-boxed .card-body .btn-social-link.btn-social-github svg, #auth-boxed .card-body .btn-social-link.btn-social-x svg {
  fill: #181717;
}
@keyframes mymove {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 991px) {
  .page-auth-boxed .navbar .navbar-nav .nav-item .nav-link {
    padding: 0 14px;
  }
  #auth-boxed {
    height: auto;
    padding: 50px 0;
  }
}
@media (max-height: 800px) {
  #auth-boxed {
    height: auto;
    padding: 50px 10px;
  }
}

