@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'montserrat', sans-serif;
}

body{
	height: 100vh;
	background-color: #51a76e;	
}

header {
	background-color: #07264e;
	height: 100px;
}

.pages {	
	position: relative;
	width: 100%;
	padding-top: 30px;
}

.page {	
	background-color: #fff;
	padding: 40px;
	border-radius: 20px;
	position: absolute;
	top: 120;
	left: calc((100% - 1280px)/2);
	width: 1280px;
	pointer-events: none;
	filter : drop-shadow(0 0 2px rgba(0,0,0,.5));	
display: flex;
justify-content: center;
}


.forms {
	width: 60%;
}

.card {
	width: 60%;
}


@keyframes slidein {
  from {
    translate: 0 0;
    scale: 200% 200%;
  }

  to {
    translate: 0 0 ;
    scale: 100% 100%;
  }
}

@keyframes opacityView {
	0%{
		opacity: 0;
	}40%{
		opacity: .6;
	}70%{
		opacity: 1;
	}
}



.img_slide {
	animation: .6s slidein;
}



.navigation {
	position: absolute;
	bottom: 7%;
	left: 50%;
	transform: translateX(-50%);
}

.navigation span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border: 2px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	margin: 0 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	font-size: 50px;
	color: #fff;
}