@import url('https://fonts.googleapis.com/css?family=Oswald&display=swap');

html, body {
	height: 100%;
}
body {
	background: #FFF;
	margin: 0px;
	padding: 0px;
}
* {
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	text-decoration: none;
}
a {
	color: #666;
	text-decoration: none;
	transition: all 0.5s;
}
a:hover {
	color: #D8C8B1;
	text-decoration: none;
}

#login {
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-template-areas: 'form mensagem';
	grid-gap: 0;
	justify-items: center;
	height: 100%;
}

#login section:nth-of-type(1) {
	grid-area: form;
	text-align: center;
	align-self: center;
	padding: 50px;
}

form img {
	display: block;
	vertical-align: top;
	margin: 0 auto 0 auto;
	padding: 0px;
	width: 240px;
	height: auto;
}

input[type=text], input[type=email], input[type=password] {
	width: 254px;
	border: #000 1px solid;
	color: #000;
	outline: none;
	padding: 7px;
	text-align: left;
}
input[type=text], input[type=email] {
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	margin: 40px 0 7px 0;	
}
input[type=password] {
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}
input[type=submit] {
	margin-top: 10px;
	width: 270px;
	padding: 10px;
	border: none;
	border-radius: 6px;
	color: #FFF;
	text-transform: uppercase;
	background: #666;
	cursor: pointer;
	cursor: hand;
	transition: all 0.5s;
}
input[type=submit]:hover {
	background: #CC0000;
	color: #FFF;
}

form label {
	display: block;
	vertical-align: top;
	padding: 20px 0 0 0;
	text-align: center;
}
form label:first-letter {
	text-transform: uppercase;
}

#login section:nth-of-type(2) {
	background: url(../img/bglogin.jpg) no-repeat center center;
	background-size: cover;
	width: 100%;
	text-align: center;
}
#login section:nth-of-type(2) div {
	padding: 50px;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}
#login section:nth-of-type(2) * {
	color: #FFF;
}
h2 {
	font-size: 48px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 5px;
}
#login section:nth-of-type(2) p {
	font-weight: lighter;
	font-size: 14px;
}