html {
	font-family: 'Poppins';
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:link,
a:visited,
a:active {
	text-decoration: none;
}

section {
	padding: 0 32px;
	margin-bottom: 40;
}

section .title {
	font-weight: 600;
	font-size: 32px;
	line-height: 140%;
	text-align: center;
	color: #111827;
	margin: 0;
	margin-bottom: 40px;
}

span {
	font-weight: 600;
	font-size: 16px;
	line-height: 140%;
}

.color-button {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;

	height: 40px;
	color: #fff;
	background: linear-gradient(270deg, #570DDD -24.6%, #4968ED 38.4%, #4199F5 100.14%, #37D6FF 160.88%);
	border: none;
	border-radius: 6px;
}

.button-disabled {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;

	height: 40px;

	color: #fff;
	background: #C8C8C8;
	border: none;
	border-radius: 6px;
}

@-ms-viewport {
	width: device-width;
}

body {
	margin: 0;
	font-family: "Poppins", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 2;
	color: #111827;
	text-align: left;
	background-color: #ffffff;
}

@media screen and (min-width: 1498px) {
	.page{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.max-width{
        max-width: 1498px;
    }
}


@media screen and (min-width: 641px) and (max-width: 1024px) {
	section {
		padding: 0 32px;
	}

	section .title {
		font-size: 24px;
		margin-bottom: 16px;
		text-align: center;
	}

	span {
		font-size: 16px;
	}

}



@media screen and (max-width: 640px) {
	section {
		padding: 0 16px;
	}

	section .title {
		font-size: 18px;
		margin-bottom: 16px;
		text-align: center;
	}

	span {
		font-size: 12px;
	}
}

@media screen and (prefers-color-scheme: dark) {

	.button-disabled {
		background: #e7e7e773;
	}
}