.content-wrapper {
	background-color: #FFFFFF;
}
.message-box {
	height: 200px;
	width: 380px;
	position: absolute;
	top: 40%;
	left: 50%;
	margin-top: -100px;
	margin-left: 50px;
	color: #000000;
	font-family: Roboto;
	font-weight: 300;
}
.message-box h1 {
	font-size: 60px;
	line-height: 46px;
	margin-bottom: 40px;
}
.buttons-con .action-link-wrap {
	margin-top: 40px;
}
.buttons-con .action-link-wrap a {
	background: #68c950;
	padding: 8px 25px;
	border-radius: 4px;
	color: #FFF;
	font-weight: bold;
	font-size: 14px;
	transition: all 0.3s linear;
	cursor: pointer;
	text-decoration: none;
	margin-right: 10px
}
.buttons-con .action-link-wrap a:hover {
	background: #5A5C6C;
	color: #fff;
}
svg {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -250px;
	margin-left: -400px;
}
#moving-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -175px;
	margin-left: -335px;
}
#Polygon-1 , #Polygon-2 , #Polygon-3 , #Polygon-4 , #Polygon-4, #Polygon-5, #moving-logo {
	animation: float 1s infinite ease-in-out alternate;
}
#Polygon-2 {
	animation-delay: .2s; 
}
#Polygon-3 {
	animation-delay: .4s; 
}
#Polygon-4 {
	animation-delay: .6s; 
}
#Polygon-5 {
	animation-delay: .8s; 
}

@keyframes float {
	100% {
		transform: translateY(20px);
	}
}
@media (max-width: 450px) {
	svg {
		position: absolute;
		top: 50%;
		left: 50%;
		margin-top: -250px;
		margin-left: -190px;
	}
	#moving-logo {
		position: absolute;
		top: 50%;
		left: 50%;
		margin-top: -185;
		margin-left: -130px;
	}
	.message-box {
		top: 50%;
		left: 50%;
		margin-top: -100px;
		margin-left: -190px;
		text-align: center;
	}
}
.login-logo img {
}
.login-logo a {
	color: #444;
}
.login-page {
	background: #d2d6de;
}
.login-box {
	width: 360px;
	margin-left: auto;
	margin-right: auto;
	background-color: rgba(255,255,255,0.9);
	padding: 40px;
	box-sizing: border-box;
	box-shadow: 0 15px 25px rgba(0,0,0,.6);
	border-radius: 10px;
}
@media (max-width: 768px) {
	.login-box {
		width: 90%;
	}
}
.login-box-msg {
	margin: 0;
	padding-bottom: 20px;
}