:root{
     --colorPrimary:#B00A6C;
     --colorWhite:#fff;
}

.container {
	width: 99%;
	height: 90%;
	background-image: linear-gradient(rgba(9, 9, 138, 0.8),rgba(238, 0, 50, 0.8)),
		url(../images/login-background.png);
	background-position: center;
	background-size: cover;
	position: relative;
    border-radius: 10px;
    margin: 5px;
}

.form-box {
	width: 94%;
	max-width: 480px;
    border-radius: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--colorWhite);
	padding: 20px 20px 70px;
	text-align: center;
}
.form-box h1 {
	font-size: 20px;
	margin-bottom: 30px;
	color:var(--colorPrimary);
	position: relative;
}
.logo-sistema {
    width: 100%;
    bottom: -10px;
}

.form-box h1::after {
	content: "";
	width: 50px;
	height: 4px;
	border-radius: 3px;
	background: var(--colorPrimary);
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
}


