body { background-color: #FBFEFC; }

.loginPageWrapper {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: center;
	gap: 20px;
	position: absolute;
	top: 0;
	left: 0;
}

.art {
	width: 615px;
	height: 615px;
	margin: 45px 0;
	font-size: 15px;
	font-weight: 300;
	background: url('background/');
	background-size: cover;
	background-position: center center;
	text-align: left;
	display: inline-block;
	cursor: pointer;
	border-radius: 20px;
}

@media (max-width: 998px) {
	.art { display: none; }
}

.login {
	width: 450px;
	height: 615px;
	margin: 45px 0;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow-y: hidden;
}

.selected{
	color: #666;
	background: #EEF6EF !important;
	border-radius: 0;
	z-index: 1;
}

.ui-menu .ui-menu-item.selected {
	background-color: red !important;
	font-weight: bold;
}

.label {
	font-size: 11px;
	color: #666;
	letter-spacing: 1px;
	display: inline-block;
	text-align: left;
	padding-left: 2px;
}

.labelInput {
	color: #333333;
	width: 100%;
	text-align: start;
	font-weight: 500;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 0px;
	vertical-align: middle;
	margin-bottom: 5px;
}

input, select {
	-webkit-font-smoothing: antialiased !important;
	background: #fff;
	border: 1px solid #ced4da;
	padding: 10px 15px;
	margin-top: 5px;
	display: inline-block;
	color: #333333;
	font-family: Circular;
	font-size: 12px;
	font-weight: 500;
	border-radius: 8px;
	text-align: left;
}

input:focus, select:focus {
	outline: none;
	box-shadow: none;
}

select {
	padding: 11px 10px;
	padding-right: 27px;
	background: #fff url('../img/setas.svg') no-repeat right 0.75rem center;
	background-size: 8px 10px;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.inputLogin { width: 100%; }

.password-field { position: relative; display: block; width: 100%; }

.password-field .inputLogin { padding-right: 48px; }

.toggle-password {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	border: 0;
	padding: 4px;
	background: transparent;
	color: #999999;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.toggle-password svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.toggle-password .eye-off-icon { display: none; }
.toggle-password.is-visible .eye-icon { display: none; }
.toggle-password.is-visible .eye-off-icon { display: block; }
