body{
	font-family: 'Roboto', sans-serif;
	background: url(../image/logo.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 120%;
}
.hq-template{
	background: url(../image/overlay.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left;
	width: 100%;
}
.login-block{
	max-width: 460px;
	width: 100%;
	margin-left: 15vw;
	padding-top: 60px;
	animation-name: FadeLeft;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
@keyframes FadeLeft{
  0% {left: -1000px;}
  100% {left: 0px;}
}
.login-block .logo{
	margin-bottom: 100px;
	text-align: center;
	
}
.login-block .logo a{
	color: #fff;
	font-family: 'Audiowide', cursive;
	text-decoration: none;

}

.login-block  h3{
	font-size: 20px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 20px;
}
.login-block  .form-group{
	margin-bottom: 20px;
}
.login-block input{

	min-height: 50px;
    -webkit-box-shadow: none;
    box-shadow: none !important;
    border: 2px solid rgba(241, 241, 241, 0.25) ;
    padding: 10px 15px;
    background-color: transparent !important;
    color: #fff !important;
    transition: .6s;
    
}

.login-block input:focus{
	border: 2px solid #1d0391;
}
.login-block input::placeholder{
	color: #bebebe;
}
.login-block .form-group svg{
	float: right;
    margin-top: -37px;
    margin-right: 10px;
    color: #bebebe;
}
.login-block  .forgot a{
	font-size: 14px;
    color: #d6d6d6;
    float: right;
}
.login-block .login-btn{
	width: 100%;
	background: #330e99 !important;
    border: none;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}
.login-block  .login-btn a{
	color: #fff;
	letter-spacing: 1px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    z-index: 2;
}
.login-block  .login-btn:before{
	position: absolute;
	content: "";
	top: 0;
	left: -20px;
	width: 0%;
	height: 100%;
	background-color: rgba(255,255,255,.15);
	transition: .6s;
	transform: skew(50deg);
	z-index: 1;
}
.login-block  .login-btn:hover:before{
	width: 110%;
}
.login-block .separator{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	margin-bottom: 20px;
}
.login-block .separator hr{
	border-top: 1px solid rgba(16, 85, 96, 0.1);
	border-color: #a4a4a4;
	flex-grow: 1;
}
.login-block  .separator p{
	color: #a4a4a4;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 0;

}
.login-block  .social-media{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0;
	margin-bottom: 20px;
}
.login-block  .social-media li{
	list-style: none;
	max-width: 100%;
	flex: 0 0 33.33333%;
	padding-left: 5px;
	padding-right: 5px;
	margin-bottom: 10px;
}
.login-block  .social-media li a {
    line-height: 45px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    border-radius:2px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 45px;
}
.login-block  .social-media li a i {
	width: 40px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.login-block  .social-media li a span {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
}
.login-block  .social-media li a.facebook-bg{
	background-color: #3b5998;
}
.login-block  .social-media li a i.fa-facebook{
	background: #4867aa;
}
.login-block .social-media li a.twitter-bg{
	background-color: #00acee;
	
}
.login-block .social-media li a i.fa-twitter{
	background: #33CCFF;
}
.login-block  .social-media li a.google-bg{
	background-color: #CC3333;
}
.login-block  .social-media li a i.fa-google{
	background: #db4437;
}
.login-block .register{
	color: #b6b6b6;
	text-align: center;
}
.login-block .register a{
	color: #b6b6b6;
	text-decoration: underline;
}
.copyright{
  text-align: center; 
    padding: 20px;
    font-size: 16px;
}
.copyright a{
  color: #fff !important;
  font-weight: bold;
}
/*****************************************************/
@media only screen and (max-width: 767px){
	.login-block{
		margin-left: 0;
	}
}
@media only screen and (max-width: 575px){
	.login-block  .social-media li{
		flex: 0 0 50%;

	}
}
@media only screen and (max-width: 450px){
	.login-block .login-btn:hover:before{
		width: 120%;
	}
}