body {
	background-color: var(--background);
	font-family: Arial, Helvetica, sans-serif;
	color: var(--foreground);
	margin: 0;
}
div.container {
	width: 100%;
	padding: 0; margin: 0;
}
div.row {
	width: 100%;
	padding: 0; margin: 0;
}
div.col-center {
	display: -webkit-flex;
	display: flex;
	height: 100dvh;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
div.col-info,
div.col-login {
	height: 100dvh;
	padding: 10px;
	overflow: hidden;
}
div.col-info {
	background: var(--gradient-brand);
	padding: 10px;
}
div.col-login {
	background-color: var(--background);
}
div.div-info {
	width: 90%;
}
div.div-login {
	width: 60%;
}
h1 {
	border-radius: 4px;
	height: 100px;
	outline: 0; text-indent: -9999px;
	margin-bottom: 10px;
}
h2.h2-titulo {
	font-size: 46px;
	font-weight: 600;
	color: rgba(255,255,255,.75);
	line-height: 1.08;
	margin: 24px 0;
}
h2.h2-titulo span {
  color: #fff;
}
h2.h2-form {
	font-size: 26px;
	font-weight: 600;
	margin: 0 0 8px;
}
p.p-tag {
	display: inline-flex;
	font-size: 12px;
	color: rgba(255,255,255,.75);
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
	letter-spacing: 3px;
}
p.p-info {
	font-size: 16px;
	color: rgba(255,255,255,.82);
	line-height: 1.7;
}
a { color: #003b73; }
a:hover {
	color: var(--brand-blue);
	text-decoration: none;
}
footer {
	width: 100%;
	font-size: 12px;
	color: #FFF;
	text-align: center;
	padding: 5px 10px;
}
footer a { color: #FFF; }
footer a:hover {
	color: var(--brand-blue);
	text-decoration: none;
}