* { box-sizing: border-box; }

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	background: #0f1720;
	color: #e6ebf1;
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px 16px;
}

.card {
	background: #17212c;
	border-radius: 14px;
	padding: 28px;
	width: 100%;
	max-width: 420px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.35);
	margin-top: 24px;
}

.card.wide {
	max-width: 900px;
}

h1 {
	font-size: 1.3rem;
	margin: 0 0 4px;
}

.subtitulo {
	color: #93a2b3;
	font-size: 0.92rem;
	margin: 0 0 20px;
}

label {
	display: block;
	font-size: 0.85rem;
	color: #b7c2cf;
	margin: 14px 0 6px;
}

input[type="text"],
input[type="password"],
input[type="date"] {
	width: 100%;
	padding: 12px 14px;
	border-radius: 9px;
	border: 1px solid #2a3849;
	background: #0f1720;
	color: #e6ebf1;
	font-size: 1rem;
}

input:focus {
	outline: none;
	border-color: #3aa0ff;
}

button, .btn {
	display: inline-block;
	width: 100%;
	margin-top: 20px;
	padding: 13px 16px;
	border: none;
	border-radius: 9px;
	background: #2f7fe0;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
}

button:hover, .btn:hover { background: #2569c2; }

.btn-secundario {
	background: #2a3849;
}
.btn-secundario:hover { background: #37485c; }

.btn-perigo {
	background: #b23b3b;
}
.btn-perigo:hover { background: #922f2f; }

.erro {
	background: #3a1c1c;
	border: 1px solid #7a3131;
	color: #ffb3b3;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 0.9rem;
	margin-top: 16px;
}

.sucesso {
	background: #1c3a24;
	border: 1px solid #2e7a3f;
	color: #b3ffc0;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 0.9rem;
	margin-top: 16px;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
	font-size: 0.92rem;
}

th, td {
	text-align: left;
	padding: 10px 8px;
	border-bottom: 1px solid #24303d;
}

th {
	color: #93a2b3;
	font-weight: 600;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.topo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 900px;
}

.topo a {
	color: #93a2b3;
	text-decoration: none;
	font-size: 0.88rem;
}

.tag {
	display: inline-block;
	padding: 3px 9px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
}
.tag.ok { background: #1c3a24; color: #7fe396; }
.tag.fim { background: #3a1c1c; color: #ff9a9a; }

.logo-area {
	text-align: center;
	margin-bottom: 4px;
}
.logo-area strong {
	font-size: 1.05rem;
}
