/*
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");
	background-size: cover;
	background-position: center;
}
.animatedform-box{
	padding: 50px 25px;	
	width: 100%;
	text-align: center;
	border-radius: 20px;
}
.animatedform-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);
	animation: form-pic 2s infinite;
}
@keyframes form-pic{
	50%{
		margin-top: -20px;
		margin-bottom: 20px;
		box-shadow: 5px 20px 10px rgba(0, 0, 0, 0.2);
	}
}
.animatedform-box .input-box{
	width: 100%;
	text-align: left;
	margin-top: 10px;
}
.animatedform-box .input-box label{
	font-size: 16px;
	font-weight: bold;
	-webkit-text-fill-color: transparent !important;
	background: -webkit-linear-gradient(90deg,#06EBF2,#782EED) !important;
	-webkit-background-clip: text !important;
	width: 100%;
}
.animatedform-box .input-box input{
	width: 90%;
	margin: 0 auto;
	border: 0px;
	padding: 6px 10px;
	border-radius: 1000px;
	background: white;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
.animatedform-box .input-box input:active, .animatedform-box .input-box input:focus{
	width: 100%;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);	
}
.animatedform-box .submit-box{
	width: 100%;
	margin-top: 20px;
}
.animatedform-box .submit-box input{
	width: 90%;
	border: 0px;
	background: linear-gradient(90deg,#06EBF2,#782EED) !important;
	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;
}
.animatedform-box .submit-box input:hover{
	width: 100%;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);	
}
.social-icons{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.social-icons a{
	margin: 10px;
	font-size: 20px;
	-webkit-text-fill-color: transparent !important;
	background: -webkit-linear-gradient(90deg,#06EBF2,#782EED) !important;
	-webkit-background-clip: text !important;
}
.social-icons a:hover{
	transform: rotate(360deg);
}
.social-icons a i{
	margin: 5px;
}
.login-button{
	font-weight: bold;
	-webkit-text-fill-color: transparent !important;
	background: -webkit-linear-gradient(90deg,#06EBF2,#782EED) !important;
	-webkit-background-clip: text !important;
	font-size: 20px;
}