html {
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.5;
	font-family: OpenSans, Arial, Tahoma, sans-serif;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Segoe UI", Arial, Helvetica, sans-serif;
	background: linear-gradient(180deg, #eef2f5 0%, #fafafa 100%);
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333333;
}

.login-card {
	width: 380px;
	max-width: 95%;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
	padding: 32px 28px 26px;
	text-align: center;
	transition: box-shadow 0.3s ease;
}

.login-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.login-logo {
	max-height: 90px;
	cursor: pointer;
}

.login-title {
	font-size: 18px;
	font-weight: 600;
	color: #1c4e8a;
	margin-bottom: 25px;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 18px;
}

td {
	font-size: 14px;
	color: #444444;
}

label {
	font-weight: 500;
	color: #333333;
}

button, input, select {
	font: inherit;
}

input, select {
	width: 100%;
	height: 34px;
	border: 1px solid #ccd2d9;
	border-radius: 6px;
	padding: 5px 8px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	background-color: #fafbfc;
	box-sizing: inherit;
}

input:focus, select:focus {
	border-color: #1c4e8a;
	box-shadow: 0 0 5px rgba(28, 78, 138, 0.3);
	background-color: #ffffff;
}

.login-button {
	width: 100%;
	background-color: #1c4e8a;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	padding: 10px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.login-button:hover {
	background-color: #163d6d;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.login-button:active {
	transform: translateY(0);
	box-shadow: none;
}

.footer-info {
	font-size: 12px;
	color: #777777;
	margin-top: 22px;
	border-top: 1px solid #eeeeee;
	padding-top: 12px;
}

/* Keyframes para a animação de fade-in */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}