.main-content {
	display: flex;
	flex-direction: column;
	padding: 5px;
	align-items: center;
}

.error {
  color: #f47755;
  font-size: 14px;
  line-height: 1;
}
.loader {
	border: 8px solid #f3f3f3;
	border-top: 8px solid grey;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.btn {
	border: #000000;
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	background-color: darkblue;
	color: white;
	text-align: center;
}