* {
	box-sizing: border-box;
 
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
   overflow:hidden
}

#map {
	width: 100%;
	height: 100%;
	background: #e1e1e1;
}

#map-form {
	position: absolute;
	top: 50px;
	right: 50px;
	background: #fff;
	box-shadow: -1px 3px 10px #e1e1e1;
	padding: 30px;
	width: 90%;
	max-width: 400px;
}

h2 {
	margin: 0;
}


label {
	display: block;
	margin-top: 15px;
	color: purple;
}
input {
	width: 100%;
	font-size: 16px;
	padding: 5px 8px 2px 8px;
	border: none;
	border-bottom: 1px purple solid;
}

button {
	display: block;
	width: 100%;
	font-size: 16px;
	padding: 8px 15px;
	border: none;
	color: white;
	background: purple;
	margin-top: 25px;
	padding: 8px 15px;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: 700;
}