body {
	margin: 0;
	padding: 0;
	background-image: url(../img/login.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	font-family: "Comfortaa", sans-serif;
}

.login {
	width: 320px;
	height: 420px;
	border: 2px solid #000;
	border-radius: 80px 0px 80px 0px;
	color: #fff;
	background-color: rgba(0,0,5,0.8);
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	padding: 68px 28px;
}


h1 {
	margin: 0;
	padding-top: 0;
	padding-left: 0;
	padding-bottom: 20px;
	letter-spacing: 10px;
	text-transform: uppercase;
	text-align: center;
	font-size: 25px;
}

h3 {
	color: #b6d1ec;
}

.login p {
	margin: 0;
	padding: 0;
	font-weight: bold;
}

.login input{
	width: 100%;
	margin-bottom: 21px;
}

.login input[type="text"], input[type="password"] {
	border: none;
	border-bottom: 1px solid white;
	background: transparent;
	outline: none;
	height: 40px;
	color: white;
	font-size: 16px;
}

.login input[type="submit"] {
	border: none;
	outline: none;
	height: 35px;
	color: #000;
	background: #fff;
	border-radius: 20px;
	transition: 0.2s;
}

.login input[type="submit"]:hover{
	cursor: pointer;
	background: #FF6347;
	transition: 0.2s;
}

.login a {
	font-weight: bold;
	text-decoration: none;
	font-size: 12px;
	line-height: 20px;
	color: #4b4b4b;
	transition: 0.2s;
}

.login a:hover {
	transition: 0.2s;
	color: #ff4d4d;
}

div.imagemlogo {
	float: right;
	width: 10%;
	margin-top: 40px;
}

img.scaled {
	width: 90%;
}


div.msg-erro {
	display: block;
	color: white;
	font-size: 14px;
	text-align: center;
	background-color: red;
	padding: 10px 5px;
	
}
div.msg-success {
	display: block;
	color: white;
	font-size: 14px;
	text-align: center;
	background-color: green;
	padding: 10px 5px;
}