/*
Theme Name 	: SB | Signup and Login Forms
Author 		: Logshiv Web Design
Version 	: 1.0
File-name 	: login.css
*//*---------------------------------------------------------------------------*/
@font-face{
	font-family: font-quick;
	src: url("../webfonts/quick.otf");
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: font-quick;
	transition: 0.5s;
	outline: none !important;
	text-decoration: none !important;
}
.wrapper{
	width: 100%;
	float: left;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: url("../images/bg.jpg");
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
}
.wrapper:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,#D50F93,#3A1394) !important;
	z-index: -1;
	opacity: 0.9;
}
.form-box{
	background: transparent;
	padding: 25px 25px;	
	width: 100%;
	text-align: center;
	border-radius: 20px;
}
.form-box .input-box{
	width: 100%;
	text-align: left;
	margin-top: 15px;
}
.form-box .input-box label{
	font-size: 16px;
	font-weight: bold;
	color: white !important;
	width: 100%;
}
.form-box .input-box input{
	width: 100%;
	margin: 0 auto;
	border: 0px;
	padding: 6px 10px;
	border-radius: 1000px;
	background: white;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
.remember-box{
	width: 100%;
	color: white;
}
.form-box .submit-box{
	width: 100%;
	margin-top: 10px;
}
.form-box .submit-box input{
	width: 100%;
	border: 0px;
	background: transparent !important;
	border: 2px solid white;
	font-size: 20px;
	padding: 5px 10px;
	border-radius: 1000px;
	font-weight: bold;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
	color: white;
}
.social-icons{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.social-icons a{
	margin: 10px;
	font-size: 20px;
	color: white !important;
	transition: 0.2s !important;
}
.social-icons a:hover{
	transform: scale(1.2);
}
.social-icons a i{
	margin: 5px;
}
.form-box .form-picture{
	width: 100px;
	height: 100px;
	border-radius: 1000px;
	border: 5px solid white;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
.login-button{
	font-weight: bold !important;
	color: white !important;
	font-size: 25px;
}