body
{
	margin: 0;
	padding: 0;
	height: 100vh;
	background: linear-gradient(45deg, #ff0060, #ff8c50, #40e0d0 );
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	font-family: sans-serif;
}
.loginBox
{
	position: absolute;
	top: 50%;
	left: 50%;
	float: left;
	transform: translate(-50%, -50%);
	width: 350px;
	height: 550px;
	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,1);
}
.glass
{
	width: 100%;
	height: 100%;
	padding: 0 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);
}
.user
{
	margin: 0;
	padding: 0 0 0 80px;
	display: block;
	width: 100px;
	height: 100px;
	margin-bottom: 20px;
}
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: linear-gradient(45deg, #40e0d0, #ff8c50, #ff0060);
	color: #fff;
	border-radius: 20px;
	cursor: pointer;
}
.loginBox input[type="submit"]:hover
{
	
	background: linear-gradient(45deg, #ff0060, #ff8c50, #40e0d0);
}

.loginBox a
{
	color: #262626;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	display: block;
}
.loginBox h5
{
	margin: 0;
	padding: 15px 0 0 0;
	text-align: center;
	color: #262626;
}
.loginBox h4
{
	margin: 0;
	padding: 20px 0 0 0;
	text-align: center;
	color: #262626;
}
.loginBox h4 a
{
	text-decoration: none;
	color: blue;
}

ul
{	margin: 0;
	padding: 0;
	display: flex;
}
ul li
{
	position: relative;
	list-style: none;
	left: 55px;
	width: 50px;
	height: 50px;
	margin: 15px;
	background: #fff;
	border-radius: 10px;
	transform-style: preserve-3d;
	transition: .8s ease;
	box-shadow: 0 30px 30px rgba(0,0,0,.5);

}
ul li:nth-child(1)
{
	background: #3b5999;
}
ul li:nth-child(2)
{
	background: #dd4b39;
}
li .front , li .back
{
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	color: #fff;
	backface-visibility: hidden;
	text-decoration: none;
}
li .front
{
	display: flex;
	font-size: 20px;
	justify-content: center;
	align-items: center;
}
li .back
{
	display: flex;
	font-size: 10px;
	justify-content: center;
	align-items: center;
}
ul li:hover
{ 
	transform: rotateY(180deg);
}
.back
{
	transform: rotateY(180deg);
}


@media screen and (max-width: 988px)
{
	.loginBox
	{
		width: 350px;
		height: 550px;
	}
}
@media screen and (max-width: 640px)
{
	.loginBox
	{
		width: 350px;
		height: 550px;
		right: 10px;
	}
}
@media screen and (max-width: 320px)
{
	.loginBox
	{
		width: 320px;
		height: 550px;
		right: 10px;
	}
}