/*********************basic config**************************/

* {
	margin: 0px;
	padding 0px;
	text-decoration: none;
	font-family: sans-serif
}

a,
a:visited,
a:hover,
a:active {
	color: inherit
}

.red {
	border: solid 1px red
}
.none{
	display: none;
}

/**********************************************************/


.page{
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #d4e9ca;
		
}

.form{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	padding: 10px;
	background: #f2f2f2;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.7);
	height: 250px;
	border-radius: 5px;
}

.form input{
	margin: 5px;
	border-color: #77b469;
	border-radius: 5px;
	padding: 5px 10px;
	line-height: 1.5em;
}

.form input[type="submit"]{
	background:  #77b469;
	padding: 15px;
	color: #ffffff;
	cursor: pointer;
	border-radius: 5px;
	width: 100%;
	font-size: 1.3em;	
}