<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.join {}


.join &gt; form {
	margin: 20px auto 50px;

}
.join &gt; form &gt; p {
	text-align: center;
}

.join .agree {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 20px;
}

.join .agree &gt; div {
	text-align: center;
	flex-grow: 1;
	width: 50%;
}

.joinform {
	display: flex;
	flex-direction: column;
	min-width: 500px;
	max-width: 900px;
	width: 100%;
	justify-content: center;
	margin: 30px auto 0;
}

.joinform li {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding: 12px 15px;
	border-bottom: 1px dotted #E3E3E3;
}
.joinform li:last-child {
	border-bottom: 0;
}

.joinform li &gt; label {
	flex-basis: 250px;
}

.joinform li &gt; label span {
	position: relative;
	margin-left: 80px;
}
.joinform li &gt; label span:before {
	content: '';
	position: absolute;
	background-color: #506B9A;
	left: -20px;
	margin-top: 4px;
	width: 8px;
	height: 8px;
	border-radius: 4px;
}
.joinform li &gt; div {
	flex-grow: 1;
}

.joinform input {
	width: 100%;
	max-width: 400px;
}

input:required:invalid {
	border: 1px solid red !important;
}

input:required:valid {
	border: 1px solid #9B9B9B !important;
}





.join .success {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 100px 0;
	text-align: center;
}
.join .success div {
	line-height: 2;
	padding: 20px 0 50px;
	font-size: 1.5rem;
}

</pre></body></html>