@charset "UTF-8";
/* CSS Document */

body.overlay.active #overlay{
	background-color: rgba(0,0,0, 0.4);
	display: block;
	position: absolute;
	z-index: 5;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
}
body.overlay #overlay{
	display: none;
}

#overlay #content{
	background-color: rgba(255, 255, 255, 1);
	width: 600px;
	height: 550px;
	left: 50%;
	position: absolute;
	margin-left: -300px;
	margin-top: 40px;
	border-radius: 5px;
	box-shadow: 0px 0px 15px 0px rgba(0,0,0, 0.8);
	box-sizing: border-box;
	padding: 20px 40px;
}
#overlay h2{
	margin-bottom: 40px;
}
#overlay form span{
	display: inline-block;
	width: 80px;
}
#overlay form input{
	width: 250px;
	border: 1px solid rgba(200, 200, 200, 1);
	padding: 5px;
}
.submit{
	background-color: rgba(120, 180, 120, 1);
	padding: 10px 15px;
	box-sizing: border-box;
	border-radius: 50px;
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
	display: inline-block;
	margin-top: 40px;
	transition: background 0.3s;
}
.submit:hover{
	background-color: rgba(90, 150, 90, 1);
	transition: background 0.5s;
}
.info{
	font-size: 10px;
}

img{
	width: 100%;
	max-width: 376px;
	display: block;
	height: auto;
	margin: 0;
	padding: 0;
}