@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');

html {
	
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background: #7159c1;
	font-family: 'Open Sans', sans-serif;

}

.ContainerEntrar {
	
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-template-rows: 10vh 80vh 10vh;	
	grid-gap: 10px;
	grid-template-areas: "h h"
						 "a m"
						 "f f"

}

header {

	background: white;
	grid-area: h;

	 
}

aside {

	padding: 10px 10px;
	background: white;
	grid-area: a;
	text-align: center;
	 
}

main {

	background: white;
	grid-area: m;
	text-align: center;
	 
}

footer {

	background: white;
	grid-area: f;
	text-align: center;	
	padding: 8px 8px;
	 
}

form {

	text-align: center;
	
}

p {
	
	font-size: 15px;	
	text-align: center;
	color: darkblack;
	
}


h2 {

	text-align: center;	
	
}

h3 {

	text-align: center;

}

h4 {

	text-align: center;	
	
}

hr {
	
	font-size: 5px;
	color: #7159c1;

}

input[type="submit"]{
	width: 70%;
	margin: 0 auto;
	padding: 10px;
	border: 1;
	margin-bottom: 10px;
	border-radius: 50px;
	cursor: pointer;
}