/*
 * File: styles.css
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


/* Estilo básico da página */
body {
	margin: 0;
	padding: 0;
	font-family: 'Inter', sans-serif;
	background-color: #f5f7fa;
	color: #333;
	display: flex;
	flex-direction: column;
	height: 100vh;
	text-align: center;
}

#root {
	flex: 1;
	width: 100%;
	min-height: calc(100vh - 60px);
}

/* Estilo para mensagens de carregamento */
.loading-message {
	color: #1a365d;
	font-size: 1.2em;
}
