body
{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100vh;
	background: #000;
	font-family: sans-serif;
}
.loginBox
{
	position: absolute;
	top: 50%;
	left: 50%;
	float: left;
	transform: translate(-50%, -50%);
	width: 350px;
	height: 520px;
	box-sizing: border-box;
	background: transparent;
	box-shadow: 0 10px 20px rgba(0,0,0,.5);
	border-radius: 5px;
	transition: .5s;
}
.loginBox:hover
{
	box-shadow: 0 10px 20px rgba(0,0,0,0);
	background: rgba(255,255,255,.5);
}
.glass
{
	width: 100%;
	height: 100%;
	padding: 80px 40px 0 40px;
	box-sizing: border-box;
	background: rgba(255,255,255,.1);
	border-radius: 5px;
	transition: .5s;
}
.glass:hover
{
	transform: translate(20px, 20px);
	box-shadow: 0 10px 20px rgba(0,0,0,.5);
}
h3
{
	margin: 0;
	padding: 0 0 20px;
	color: #262626;
	text-align: center;
}
.loginBox input
{
	width: 100%;
	margin-bottom: 20px;
}
.loginBox input[type="text"],
.loginBox input[type="password"]
{
	border: none;
	border-bottom: 2px solid #262626;
	outline: none;
	height: 40px;
	color: #262626;
	background: transparent;
	font-size: 16px;
	padding-left: 20px;
	box-sizing: border-box;
}
::placeholder
{
	color: rgba(0,0,0,.5);
}
.inputBox
{
	position: relative;
}
.inputBox span
{
	position: absolute;
	top: 10px;
	color: #262626;
}
.loginBox input[type="submit"]
{
	border: none;
	outline: none;
	height: 40px;
	font-size: 16px;
	background: #ed292a;
	color: #fff;
	border-radius: 20px;
	cursor: pointer;
}
.loginBox .a
{
	color: #262626;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;	
	display: block;
}
.loginBox h5
{
	margin: 0;
	padding: 15px 0 0 0;
	text-align: center;
	color: #262626;
}
.loginBox h4
{
	padding: 50px 0 0 0;
	text-align: center;
	color: #262626;
}
.loginBox h4 a
{
	text-decoration: none;
	color: #BE5869;
}

ul
{
	margin: 0;
	padding: 0;
	display: flex;
}
ul li
{
	list-style: none;
	margin: 0 40px;
}
ul li a .fa
{
	font-size: 30px;
	color: #262626;
	line-height: 50px;
	transition: .5s;
}
ul li a
{
	position: relative;
	display: block;
	top: 25px;
	width: 50px;
	height: 50px;
	background: transparent;
	text-align: center;
	transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(0,0);
	transition: .5s;
	box-shadow: -20px 20px 10px rgba(0,0,0,.5);
}
ul li a:before
{
	content: '';
	position: absolute;
	top: 10px;
	left: -20px;
	height: 100%;
	width: 20px;
	background: transparent;
	transition: .5s;
	transform: rotate(0deg) skewY(-45deg);
}
ul li:nth-child(1) .fa
{
	color: #3b5999;
}
ul li:nth-child(2) .fa
{
	color: #dd4b39;
}
ul li a:after
{
	content: '';
	position: absolute;
	bottom: -20px;
	left: -10px;
	height: 20px;
	width: 100%;
	background: transparent;
	transition: .5s;
	transform: rotate(0deg) skewX(-45deg);
}
ul li a:hover
{
	transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(20px, -20px);
	box-shadow: -50px 50px 50px rgba(0,0,0,.5);
}
ul li:hover .fa
{
	color: #fff;
}
ul li:hover:nth-child(1) a
{
	background: #3b5999;
}
ul li:hover:nth-child(1) a:before
{
	background: #2e4a86;
}
ul li:hover:nth-child(1) a:after
{
	background: #4a69ad;
}

ul li:hover:nth-child(2) a
{
	background: #dd4b39;
}
ul li:hover:nth-child(2) a:before
{
	background: #c13929;
}
ul li:hover:nth-child(2) a:after
{
	background: #e8432e;
}


@media screen and (max-width: 988px)
{
	.loginBox
	{
		width: 350px;
		height: 520px;
	}
}
@media screen and (max-width: 640px)
{
	.loginBox
	{
		width: 350px;
		height: 520px;
		right: 10px;
	}
}
@media screen and (max-width: 320px)
{
	.loginBox
	{
		width: 320px;
		height: 520px;
		right: 10px;
	}
}