/*
Theme Name 	: SB - Login Form and Signup Forms.
Author 		: Logshiv
File-name	: style.css
Version 	: 1.0
*/
@font-face{
	font-family: font-quick;
	src: url("../webfonts/quick.otf");
}
.font-quick{
	font-family: font-quick !important;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: font-quick !important;
	transition: 0.5s;
}
.wrapper{
	width: 100%;
	float: left;
	clear: both;
}
.banner{
	width: 100%;
	float: left;
	clear: both;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: url("../images/banner.png");
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
}
.banner:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(-45deg,rgba(0, 150, 214), rgba(57, 24, 143));
	opacity: 0.95;
	z-index: -1;

}
.banner-img{
	animation: top-down 2s infinite;
}
@keyframes top-down{
	50%{
		margin-top: -20px;
		margin-bottom: 20px;
	}
}
.basic-section{
	width: 100%;
	float: left;
	clear: both;
	padding: 80px 0px;
}
.form-box{
	margin-top: 30px;
}
.form-links{
	text-align: center;
	word-spacing: 26px;
}
.form-links a{
	text-decoration: none;
}
.footer{
	width: 100%;
	float: left;
	clear: both;
	padding: 30px 0px;
	background: black;
}