html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: "Segoe UI", Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
	color: #000000;
	overflow: hidden;
}

body {
	background-image: url("/logos_sistema/fundo.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.container {
	width: 400px;
	max-width: 90%;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 24px;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.system-button {
	cursor: pointer;
	transition: all 0.25s ease;
	padding: 14px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: #f8f9fb;
	border: 1px solid #d0d4da;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	user-select: none;
}

.system-button i {
	font-size: 18px;
	color: #1a4fa0;
	transition: transform 0.25s ease, color 0.25s ease;
}

.system-button:hover {
	background-color: #1a4fa0;
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-2px);
	border-color: #1a4fa0;
}

.system-button:hover i {
	color: #ffffff;
	transform: scale(1.15);
}

.footer {
	font-size: 13px;
	color: #555555;
	line-height: 1.4;
	margin-top: 16px;
}

.margin-bottom {
	margin-bottom: 16px;
}

.margin-top {
	margin-top: 16px;
}

.mobile {
	max-width: 100%;
}

* {
	transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

@media (max-width: 768px) {
	.container {
		width: 90%;
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 480px) {
	.container {
		width: 90%;
		padding-left: 18px;
		padding-right: 18px;
	}
}