@import "../css/bootstrap.min.css";
@import "../css/font-awesome.min.css";
@import "../css/snow.css";
@import url("../css/animate.css");
.load {
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  z-index: 999999;
  top: 0px;
  background: #3a2323;
  background: radial-gradient(circle, #eee 0%, #b1b1b1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeeeee", endColorstr="#b1b1b1", GradientType=1);
}

.load .lds-ripple {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.load .lds-ripple div {
  position: absolute;
  border: 4px solid #363636;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.load .lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}
.pointer img {
  width: 50px;
  position: relative;
  left: -21px;
  top: -15px;
}

body {
  padding: 50px 0px;
  background: url(../images/bg2.jpg) no-repeat top;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
  background-attachment: fixed;
}

body:after {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1;
  content: "";
}

body .login {
  margin: 0 auto;
  position: relative;
  z-index: 99;
}

body .login .content {
  padding: 120px 50px;
  background-color: #fff;
}

body .login .content.registerc {
  padding: 50px;
}

@media (max-width: 767px) {
  body .login .content {
    padding: 50px 20px !important;
  }
}
body .login .content img.logo {
  display: block;
  margin: 0 auto;
  width: 250px;
}

body .login .content ul {
  display: flex;
  padding: 0px;
  justify-content: space-between;
  align-items: center;
  width: 230px;
  margin: 50px auto 20px;
}

body .login .content ul li {
  display: inline-block;
}

body .login .content ul li a {
  text-decoration: none;
  color: #fff;
}

body .login .content ul li a i.fa {
  width: 50px;
  height: 50px;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #fff;
  position: relative;
}

body .login .content ul li a i.fa.fa-facebook {
  background-color: #4867aa;
}

body .login .content ul li a i.fa.fa-facebook:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: rgba(103, 58, 183, 0.1411764706);
  border-radius: 50%;
  animation: scale1 1.5s alternate infinite ease-in;
}

body .login .content ul li a i.fa.fa-google-plus {
  background-color: #db4437;
}

body .login .content ul li a i.fa.fa-google-plus:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: rgba(203, 66, 73, 0.29);
  border-radius: 50%;
  animation: scale2 1.5s alternate infinite ease-in;
  animation-delay: 1s;
}

body .login .content ul li a i.fa.fa-linkedin {
  background-color: #33ccff;
}

body .login .content ul li a i.fa.fa-linkedin:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: rgba(59, 183, 245, 0.15);
  border-radius: 50%;
  animation: scale3 1.5s alternate infinite ease-in;
  animation-delay: 2s;
}

@keyframes scale1 {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes scale2 {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes scale3 {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1.1);
  }
}
body .login .content .or {
  text-align: center;
  position: relative;
  margin: 40px auto 30px;
  width: 25px;
}

body .login .content .or:before {
  background-color: #eee;
  width: 75px;
  height: 2px;
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
}

body .login .content .or:after {
  background-color: #eee;
  width: 75px;
  height: 2px;
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
}

body .login .content .form-group {
  margin-bottom: 20px;
}

body .login .content .form-group input {
  border-radius: 45px;
  min-height: 50px;
}

body .login .content p.text-center {
  color: #838383;
}

body .login .content p.text-center a {
  margin-left: 10px;
  display: inline-block;
}

body .login .content button {
  background: #000;
  width: 100%;
  text-align: center;
  border: none;
  color: #fff;
  text-transform: uppercase;
  padding: 14px 20px;
  margin: 39px 0px 20px;
  display: block;
  border-radius: 45px;
  box-shadow: 0px 2px 7px 3px #ccc;
  transition: 0.5s;
}

body .login .content button:hover {
  background: #ff6262;
  transition: 0.5s;
}

body .login .bg {
  background: url(../images/bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  background-position: center;
}

body .login.forgot .bg {
  background: url(../images/bg4.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  background-position: center;
}

body .login.forgot .bg {
  background: url(../images/bg4.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  background-position: center;
}

body .login.register .bg {
  background: url(../images/bg5.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  background-position: center;
}