* {
	margin: 0;
	padding: 0;
	outline: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}

html, body {
	width: 100%;
	height: 100%;
}

body {
	background-image: url('../../img/login/background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.container {
	width: 100%;
	max-width: 1080px;
	height: 100%;
	margin: auto;
	display: flex;
	flex-direction: row;
	padding: 0 15px;
}

.logo,
.formulario {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
}

.align-content {
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
}

form {
	display: flex;
	max-width: 368px;
}

.input-group {
	margin-top: 125px;
	margin-bottom: 15px;
}

input[type="text"],
input[type="password"] {
	width: 100%;
	height: 58px;
	border-radius: 5px;
	border: none;
	padding-left: 62px;
	font-weight: bold;
}

input[type="text"] {
	margin-bottom: 8px;
	background-image: url('../../img/login/user.png');
	background-repeat: no-repeat;
	background-position-x: 22px; 
	background-position-y: 20px;
}

input[type="password"] {
	margin-bottom: 8px;
	background-image: url('../../img/login/lock.png');
	background-repeat: no-repeat;
	background-position-x: 22px; 
	background-position-y: 20px;
}

div.button {
	width: 100%;
	text-align: center;
}

button {
	padding: 13px 50px;
	font-weight: bold;
	color: white;
	border: none;
	border-radius: 3px;
	background-color: #0ed8d8;
	font-size: 20px;
	cursor: pointer;
}

.lembrar {
	display: flex;
	width: 100%;
	margin-bottom: 35px;
	align-items: center;
}

input#lembrar {
	width: 25px;
	height: 25px;
	margin-right: 10px;
	cursor: pointer;
}

input#lembrar:checked ~ label::after{
	content: '';
} 

.check {
	color: white;
	position: relative;
}

.check::after {
    background: url(../../img/login/check.png)!important;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    background-size: cover!important;
    position: absolute;
    top: -4px;
    left: -35px;
    cursor: pointer;
}

@media only screen and (max-width: 992px) {
	body {
		background-position: right;
	}
	.container {
		flex-direction: column;
	}
	.logo {
		justify-content: center;
	}
	.formulario {
		align-items: center;
		justify-content: flex-start;
	}
	.input-group {
		margin-top: 0px;
	}
	button {
		width: 100%;
	}
	img {
		width: 100%;
		max-width: 368px;
	}
}
