body {
	display: flex;
	background: linear-gradient(#c3f0ef, #d4fcf4);
	font-family: "Asap", sans-serif;
	justify-content: center;
}
.up{
	display: inline-block;
}


.login {
	overflow: hidden;
	background-color: #bbdefc;
	padding: 40px 30px 30px 30px;
	border-radius: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: -webkit-transform 300ms, box-shadow 300ms;
	-moz-transition: -moz-transform 300ms, box-shadow 300ms;
	transition: transform 300ms, box-shadow 300ms;
	box-shadow: 5px 10px 10px rgba(2, 128, 144, 0.2);
	
}
.login::before, .login::after {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	border-top-left-radius: 40%;
	border-top-right-radius: 45%;
	border-bottom-left-radius: 45%;
	border-bottom-right-radius: 40%;
	z-index: -1;

}
.login::before {
	left: 60%;
	bottom: -100%;
	background-color: rgba(252, 83, 83, 0.15);
	-webkit-animation: wawes 6s infinite linear;
	-moz-animation: wawes 6s infinite linear;
	animation: wawes 6s infinite linear;
}
.login::after {
	left: 55%;
	bottom: -95%;
	background-color: rgba(184, 6, 6, 0.2);
	-webkit-animation: wawes 7s infinite;
	-moz-animation: wawes 7s infinite;
	animation: wawes 7s infinite;
}
.login > input {
	font-family: "Asap", sans-serif;

	font-weight:600;
	display: block;
	border: 0;
	border-radius: 4px;
	font-size: 16px;
	background: white;
	width: 100%;
	height: 100%;
	padding: 12px 20px;
	margin: 15px -10px;
	opacity: 0.9; 
}
.login > button {
	font-family: "Asap", sans-serif;

	cursor: pointer;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	width: 100px;
	border: 0;
	padding: 10px 0;
	margin-top: 10px;
	margin-left: -5px;
	border-radius: 5px;
	background-color: #f45b69;
	-webkit-transition: background-color 300ms;
	-moz-transition: background-color 300ms;
	transition: background-color 300ms;
}
.login > button:hover {
	background-color: #f24353;
	opacity: 0;
}

/* .login .emailcheck{
	color: #de0611;
	font-size: 16px;
	font-weight: 500;
	margin: -10px 0 -10px 2px;
} */




/* .login .error input.email{
	border-color: #de0611;
} */

@-webkit-keyframes wawes {
	from {
	-webkit-transform: rotate(0);
	}
	to {
	-webkit-transform: rotate(360deg);
	}
}
@-moz-keyframes wawes {
	from {
	-moz-transform: rotate(0);
	}
	to {
	-moz-transform: rotate(360deg);
	}
}
@keyframes wawes {
	from {
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
	}
	to {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
	}
}


.underlogin {
	position: relative;

	
}