body {
	padding: 0;
	margin: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 30px;
	font-family: sans-serif;
	font-size: 16px;
	background-color: #fafbfc;
}


img.logo {
	width: 100%;
	max-width: 300px;
}

.title {
	font-size: 24px;
}

.error {
	color: red;
}

form {
	width: auto;
	padding: 25px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-direction: column;
	gap: 15px;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

input {
	font-size: 18px;
	padding: 8px 12px;
	border-radius: 8px;
	border: 1px solid silver;
	background-color: #fafbfc;
}

button {
	font-size: 18px;
	padding: 8px 12px;
	border-radius: 8px;
	border: 0;
	background-color: #2860a3;
	color: white;
}
