@import
	url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap')
	;

@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 300;
	src: local('Lato'),
		url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
}

html, body {
	height: 100%;
	font-family: Lato, serif;
	font-size: 16px;
}

a, a:hover {
	color: #2196F3;
	text-decoration: none;
}

p {
	font-size: 1em;
}

h1 {
	font-size: 4em;
}

input {
	width: 100%;
}

input[type="text"] {
	padding: 0.5rem 0.5rem;
	border: 1px solid #ced4da;
}

input[type="text"], input[type="submit"] {
	max-width: 310px;
	display: block;
	margin: auto;
	border-radius: 4px;
}

input[type="submit"] {
	background: #2196F3;
	color: #ffffff;
	border: 1px solid #2196F3;
	padding: 0.5rem 1rem;
}

label {
	text-align: center;
	display: block;
}

@media screen and (max-width: 991px) {
	.panel-detalhes {
		display: none;
	}
}

@media screen and (min-width: 992px) {
	.flex-lg {
		display: flex;
		align-items: center;
	}
	.panel-login {
		max-width: 20%
	}
	.panel-detalhes {
		background: lightblue url("bg-login.jpg");
		width: 100%;
		height: 100%;
		min-height: 10px;
		justify-content: center;
		align-items: center;
	}
}

.panel-login {
	text-align: center;
	height: 100%;
	display: flex;
	align-items: center;
	background: #e9ecef;
	padding: 0 3em;
	justify-content: center;
}

.m-top-1 {
	margin-top: 1em;
}

.m-1 {
	margin: 1em 0;
}

.flex {
	display: flex;
}

.panel-detalhes, h1, h2, h3, h4, h5, h6 {
	color: #fff;
}

.messages table, .messages tr {
	width: 100%;
	margin: 0;
}

.error-message {
	color: #fff;
	background: #ed4d4d;
	border-radius: 4px;
	padding: 7px 14px;
}