@charset "utf-8";

body * {
	color: var(--black);
	font-family: 'OpenSans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 19px;
}

.tela-login {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;

	width: 100vw;
	min-height: 100vh;
	height: fit-content;
	margin: 0;
	overflow-x: hidden;
}

.tela-login__background {
	display: flex;
	position: absolute;
	flex-direction: column;
	width: 100vw;
	min-height: 100%;
}

.tela-login__background::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;

	width: max(250px, 15vw);
	height: max(250px, 15vw);

	clip-path: polygon(0 0, 100% 0, 100% 100%);
	background-color: var(--primary);
}

.tela-login__background::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;

	width: 300px;
	height: 700px;

	clip-path: polygon(0 0, 0% 100%, 33% 100%);
	background-color: var(--primary);
}

.tela-login *:not(.tela-login__background) {
	z-index: 1;
}

.tela-login__texto-portal {
	text-align: center;
	color: var(--black);
	text-transform: uppercase;
	margin-top: 20px;
	margin-bottom: 8px;
	font-family: 'Sarala';
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 39px;

}

.tela-login__rodape {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 5px;

	font-family: "OpenSans";
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 19px;
	text-align: center;
	margin-left: 105px;
	margin-bottom: 15px;
	margin-right: 15px;
	max-width: calc(100vw - 105px);
}

.tela-login__rodape * {
	min-width: fit-content;
}

.pointer {
	cursor: pointer;
}

.text-center {
	text-align: center;
}

.hide {
	display: none;
}

.mb-64 {
	margin-bottom: 64px;
}

.alert,
.alert * {
	font-weight: bold;
	margin-top: 20px;
}

.alert.alert-error,
.alert.alert-error * {
	color: rgb(244, 54, 54) !important;
}

.alert.alert-warning,
.alert.alert-warning * {
	color: rgb(244, 133, 54) !important;
}

.alert.alert-success,
.alert.alert-success * {
	color: #155724 !important;
}

.center-items {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}