body
{
	margin: 0;
	padding: 0;
	height: 100vh;
	font-family: sans-serif;
	background: linear-gradient(45deg, #43c6ac, #191654);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	float: right;
}
body:before
{
	content: '';
	position: absolute;
	top: 0;
	left: -25%;
	width: 50%;
	height: 100%;
	background: rgba(255,255,255,.3);
	opacity: 0.7;
}
.form
{
	position: absolute;
	top: 50%;
	left: 25%;
	transform: translate(-50%, -50%);
	width: 350px;
	height: 530px;
	background: #fff;
	box-shadow: 0 15px 50px rgba(0,0,0,.5);
	padding: 50px;
	box-sizing: border-box;
}
.form h2
{
	color: #777;
	margin: 0 0 40px;
	padding: 0;
	text-align: center;
}
.form .input-box
{
	position: relative;
	margin: 20px 0;
}
.form .input-box input
{
	width: 100%;
	font-size: 16px;
	border: none;
	border-bottom: 2px solid #777;
	outline: none;
	padding: 10px;
	padding-left: 25px;
	box-sizing: border-box;
	font-weight: bold;
	color: #777;
}
.form .input-box input:focus,
.form .input-box input:valid
{
	border-bottom: 2px solid #03a9f4;
}
.form .input-box .fa
{
	position: absolute;
	top: 8px;
	left: 0;
	font-size: 18px;
	color: #777;
}
.form .input-box input[type="submit"]
{
	border: none;
	cursor: pointer;
	background: linear-gradient(45deg, #43c6ac, #191654);
	color: #fff;
	font-weight: bold;
	transition: 0.5s;
}
.form .input-box input[type="submit"]:hover
{
	background: linear-gradient(45deg, #191654, #43c6ac);
}
.form .a
{
	text-decoration: none;
	color: #777;
	margin-top: 20px;
	font-weight: bold;
	display: inline-block;
	transition: 0.5s;
}
.form .a:hover
{
	color: #BE5869;
}
	.form h5
	{
		margin: 0;
		padding: 15px 0 0 0;
		text-align: center;
		color: #777;
	}
	.form h4
	{
		padding: 50px 0 0 0;
		text-align: center;
		color: #777;
	}
	.form h4 a
	{
		text-decoration: none;
		color: #BE5869;
	}

ul
{
	position: relative;
	margin: 0;
	padding: 0;
	display: flex;
}
ul li
{
	position: relative;
	list-style: none;
	top: 50px;
	left: 20px;
	width: 50px;
	height: 50px;
	margin: 0 30px;
	transform: rotate(-30deg) skew(25deg);
	background: #ccc;
}
ul li span
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	transition: 0.5s;
	display: flex !important;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 30px !important;
}
ul li:hover span
{
	box-shadow: -1px 1px 1px rgba(0,0,0,.1);
}
ul li:hover span:nth-child(5)
{
	transform: translate(40px, -40px);
	opacity: 1;
}
ul li:hover span:nth-child(4)
{
	transform: translate(30px, -30px);
	opacity: .8;
}
ul li:hover span:nth-child(3)
{
	transform: translate(20px, -20px);
	opacity: .6;
}
ul li:hover span:nth-child(2)
{
	transform: translate(10px, -10px);
	opacity: .4;
}
ul li:hover span:nth-child(1)
{
	transform: translate(0,0);
	opacity: .2;
}
ul li:nth-child(1) span
{
	background: #3b5999;
}
ul li:nth-child(2) span
{
	background: #dd4b39;
}



@media screen and (max-width: 988px)
{
	.form
	{
		width: 350px;
		height: 530px;

	}
}
@media screen and (max-width: 600px)
{
	body:before
	{
		right: -25%;
	}
	.form
	{
		width: 350px;
		height: 530px;
		left: 50%;
		right: 10px;
	}
}
@media screen and (max-width: 320px)
{
	.form
	{
		width: 320px;
		height: 530px;
		right: 10px;
	}
}
