body {
	background: #EAF4F4 !important;
	color: #fff;
}

.wp-core-ui .button-primary {}

.login .button-primary {}

#backtoblog,
.language-switcher {
	display: none;
}

.login #backtoblog a,
.login #nav a {
	color: #fff !important;
}

.waves {
	position: relative;
	width: 100%;
	height: 15vh;
	margin-bottom: -7px !important;
	/*Fix for safari gap*/
	min-height: 100px;
	max-height: 150px;
}

/* Animation */

.parallax>use {
	animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
	animation-delay: -2s;
	animation-duration: 7s;
}

.parallax>use:nth-child(2) {
	animation-delay: -3s;
	animation-duration: 10s;
}

.parallax>use:nth-child(3) {
	animation-delay: -4s;
	animation-duration: 13s;
}

.parallax>use:nth-child(4) {
	animation-delay: -5s;
	animation-duration: 20s;
}

@keyframes move-forever {
	0% {
		transform: translate3d(-90px, 0, 0);
	}

	100% {
		transform: translate3d(85px, 0, 0);
	}
}

.olas {
	position: absolute;
	bottom: 0px;
	width: 100%;
}

.login form {
	border-radius: 10px;
}

#login h1 {
	height: 100px;
	margin-bottom: 20px;
	display: inline-block;
	width: 100%;
}

#login h1 a {
	height: 130px;
}

/*Shrinking for mobile*/
section {
	position: absolute;
	width: 100%;
	height: 100vh;
	background: #6E8898;
	overflow: hidden;
	z-index: -9999999;
}

section .air {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: url(https://1.bp.blogspot.com/-xQUc-TovqDk/XdxogmMqIRI/AAAAAAAACvI/AizpnE509UMGBcTiLJ58BC6iViPYGYQfQCLcBGAsYHQ/s1600/wave.png);
	background-size: 1000px 100px
}

section .air.air1 {
	animation: wave 30s linear infinite;
	z-index: 1000;
	opacity: 1;
	animation-delay: 0s;
	bottom: 0;
}

section .air.air2 {
	animation: wave2 15s linear infinite;
	z-index: 999;
	opacity: 0.5;
	animation-delay: -5s;
	bottom: 10px;
}

section .air.air3 {
	animation: wave 30s linear infinite;
	z-index: 998;
	opacity: 0.2;
	animation-delay: -2s;
	bottom: 15px;
}

section .air.air4 {
	animation: wave2 5s linear infinite;
	z-index: 997;
	opacity: 0.7;
	animation-delay: -5s;
	bottom: 20px;
}

@keyframes wave {
	0% {
		background-position-x: 0px;
	}

	100% {
		background-position-x: 1000px;
	}
}

@keyframes wave2 {
	0% {
		background-position-x: 0px;
	}

	100% {
		background-position-x: -1000px;
	}
}



Resources