/*
Theme Name 	: SB | Signup and Login Forms
Author 		: Logshiv Web Design
Version 	: 1.0
File-name 	: signup.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.png);
}
.leftside-box{
	padding: 50px 25px;	
	width: 100%;
	text-align: center;
	border-radius: 20px;
}
.rightside-box{
	background: #435CE9 !important;
	padding: 50px 25px;	
	width: 100%;
	text-align: center;
	border-radius: 20px;
}
.rightside-box .form-picture{
	width: 100px;
	height: 100px;
	border-radius: 1000px;
	border: 2px solid white;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
.rightside-box .input-box{
	width: 100%;
	text-align: left;
	margin-top: 10px;
}
.rightside-box .input-box span{
	font-size: 16px;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.8) !important;
	width: 100%;
}
.rightside-box .input-box input{
	width: 100%;
	border: 0px;
	padding: 6px 10px;
	border-radius: 1000px;
	background: rgba(0, 0, 0, 0.1);
	color: white;
}
.rightside-box .submit-box{
	width: 100%;
	margin-top: 20px;
}
.rightside-box .submit-box input{
	width: 100%;
	border: 0px;
	font-size: 20px;
	padding: 5px 10px;
	border-radius: 1000px;
	font-weight: bold;
	color: #435CE9;
	background: white; !important;
}
.rightside-box .social-icons{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.rightside-box .social-icons a{
	margin: 0px 10px;
	color: white;
	font-size: 20px;
}
.rightside-box .social-icons a i{
	margin: 0px 5px;
}
.signup-button{
	border-radius: 1000px;
	width: 100px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
	color: white;
	background: #435CE9;
}