main {
	padding: 100px 0;
}
article {
	width: 90%;
	max-width: 1000px;
	margin: auto;
}

article h1 {
	font-size: 1.4em;
	margin-bottom: 50px;
	font-weight: bold;
	border-bottom: 1px solid var(--color-lightblue);
}
article h2 {
	color: #FFF;
	font-size: 1.1em;
	margin: 50px auto 20px;
	font-weight: bold;
}

article p,
article li,
article a,
article span {
	font-size: 16px;
	margin: 10px auto;
	line-height: 2;
	color: var(--color-lightblue);
}
article p {}
article a {
	color: var(--color-main);
}
article ul,
article ol {
	padding-left: 20px;
}

section {
	margin: 40px auto;
}
.msg {
	font-size: 0.8em;
	margin: auto;
	color: #FFF;
	word-wrap: break-word;
}
.msg.email {
	font-size: 1.1em;
}
.start.btn {
	margin: auto;
}

article a {
	color: var(--color-orange);
	text-decoration: underline;
}



.paymentselect {}
.paymentselect .paycard {
	background: rgb(103,126,250);
	background: linear-gradient(125deg, rgba(103,126,250,1) 0%, rgba(142,84,219,1) 100%);
	border-radius: 10px;
	padding: 20px;
	display: block;
	margin-bottom: 40px;
	max-width: 500px;
}
.paymentselect .paycard .paycard-title {
	color: #E1E1E1;
	font-size: 0.8em;
	margin: auto;
}
.paymentselect .paycard .paycard-money {
	color: #FFF;
	font-size: 1.4em;
	margin: auto;
	font-weight: bold;
}
.paymentselect .paycard .paycard-money span {
	color: #FFF;
	font-size: 0.6em;
}
.paymentselect .paycard .payimg {
	width: 100%;
	padding-top: 10px;
	border-top: 1px solid #FFFFFF;
}
.paymentselect .paycard .payimg img {
	max-width: 280px;
	width: 100%;
}



/*===checkbox*/
.checkbox {
	display: block;
	box-sizing: border-box;
	cursor: pointer;
	padding: 5px 0px 5px 30px;
	position: relative;
	width: auto;
	margin: 5px auto;
}
.checkbox::before {
	background: #000000;
	border: 1px solid #B1650C;
	content: '';
	display: block;
	height: 16px;
	left: 5px;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	width: 16px;
	border-radius: 5px;
}
.checkbox::after {
	border-right: 3px solid #B1650C;
	border-bottom: 3px solid #B1650C;
	content: '';
	display: block;
	height: 9px;
	left: 10px;
	margin-top: -7px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: rotate(45deg);
	width: 5px;
}
input[type=radio],
input[type=checkbox] {
	display: none;
}
input[type=radio]:checked + .checkbox::after,
input[type=checkbox]:checked + .checkbox::after {
	opacity: 1;
}

.consentcheckbox {
	margin: 20px auto;
}
.consentcheckbox label {
	margin: auto;
	display: block;
	width: fit-content;
}
.checkbox p {
	font-size: 0.9em;
	display: inline-block;
	user-select: none;
}

.StripeElement {
	border-bottom: 1px solid #292929;
}


.passresetlink {
	text-align: center;
}
.passresetlink a {
	font-size: 0.6em;
}