html {
	height: 100%;
}
	
body {
	background-color: var(--background-color);
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--body-color);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 100%;
	margin: 0;
}
.container {
	min-width: 200px;
	min-height: 200px;
	padding: 0 3rem 3rem 3rem;
	border-radius: 1.5rem;
}

.text-center {
	text-align: center;
}
.bg-error {
	background-color: #e11937;
	color: white;
}
.bg-success {
	background-color: #59924e;
	color: white;
}
.bg-error .icon,
.bg-success .icon {
	border: 0.4rem solid white;
	width: 4rem;
	height: 4rem;
	margin: 0 auto;
	border-radius: 2.3rem;
	top: -2rem;
	position: relative;
}

