/* .container {
	height: 100dvh;
	width: 100vw;
	background: #202d4c;
	font-family: 'Poppins', sans-serif;
	padding-top: 48px;
} */

body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	background: #202d4c;
}

.container h1 {
	font-size: 1.5rem;
	text-align: center;
	margin: 0;
	margin-bottom: 36px;
}

.paper {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	width: 80%;
	max-width: 400px;
	margin: auto;
	margin-top: 48px;
}

.logo {
	text-align: center;
}

.index-mini-lds-container {
	position: relative;
	width: 32px;
	height: 32px;
	transition: all 0.2s linear;
}

.index-mini-lds-ring {
	display: inline-block;
	width: 32px;
	height: 32px;
	position: absolute;
	left: 0;
	top: 0;
	/* transform: translate(-50%, -50%); */
}
.index-mini-lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 24px;
	height: 24px;
	margin: 4px;
	border: 4px solid #fff;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #8f4799 transparent transparent transparent;
}
.index-mini-lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}
.index-mini-lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}
.index-mini-lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}
@keyframes lds-ring {
	0% {
			transform: rotate(0deg);
	}
	100% {
			transform: rotate(360deg);
	}
}

.loader {
	display: flex;
	justify-content: center;
}

.update-button {
	background: #8f4799;
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 8px 16px;
	cursor: pointer;
	margin-top: 16px;
}