#intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg);
    z-index: 1007;
    text-align: center;
	justify-content: center;
	gap: 10px;
	font-family: 'PyeongChangPeace';
}
#intro p {
	font-size: 2.4rem;
	letter-spacing: -0.48px;
}
#intro h2 {
	font-size: 4.8rem;
	letter-spacing: -0.96px;
}

.login {
	padding: 120px 20px 60px;
	box-sizing: border-box;
}
.login h2 {
	font-size: 3.2rem;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: -0.64px;
	color: var(--white);
	text-transform: uppercase;
	margin-bottom: 40px;
}
.login .form {
	gap: 10px;
}
.login .form .item {
	border: 1px solid #eee;
	border-radius: 5px;
	padding: 10px 16px;
	color: var(--white);
	font-size: 1.6rem;
	gap: 12px;
	box-sizing: border-box;
}
.login .form .item input[type=text] {
	flex: 1;
    width: 100%;
    height: 34px;
    font-size: 1.6rem;
	background: transparent;
	color: var(--white);
    box-sizing: border-box;
}
.login .form .item .time {
	color: #b1b1b1;
	font-size: 1.4rem;
	line-height: 1.4;
	letter-spacing: -0.28px;
}
.login .form .item button {
	height: 34px;
	border-radius: 5px;
	background: #b1b1b1;
	color: var(--white);
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: -0.28px;
	padding: 0 16px;
	box-sizing: border-box;
}
.login .form > button {
	height: 48px;
	border-radius: 5px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -0.32px;
}


.join {
	padding: 30px 16px;
	box-sizing: border-box;
}
.join .form {
	gap: 30px;
}
.join .form .box {
	gap: 10px;
}
.join .form .box h4 {
	font-size: 2rem;
	line-height: 1.2;
	letter-spacing: -0.4px;
	margin-bottom: 6px;
}
.join .form .box .item {
	height: 48px;
	border-radius: 5px;
	border: 1px solid #eee;
	padding: 0 10px 0 16px;
	overflow: hidden;
	gap: 12px;
	box-sizing: border-box;
}
.join .form .box .item input[type=text] {
	flex: 1;
	width: 100%;
	font-size: 1.6rem;
	letter-spacing: -0.28px;
}
.join .form .box .item button {
	height: 34px;
	border-radius: 5px;
	background: #b1b1b1;
	color: var(--white);
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: -0.28px;
	padding: 0 16px;
	box-sizing: border-box;
}
.join .form .item .time {
	color: #b1b1b1;
	font-size: 1.4rem;
	line-height: 1.4;
	letter-spacing: -0.28px;
}
.join .form .box .item select {
	width: calc(100% - -26px);
	margin: 0 -16px;
	padding: 0 16px;
}

.join .agree input {
	position: absolute;
	opacity: 0;
	z-index: -1;
}
.join .agree input + label {
	position: relative;
	display: block;
	font-size: 1.4rem;
	color: #262626;
	padding: 0 50px 0 26px;
	box-sizing: border-box;
}
.join .agree input + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	border: 1px solid #b1b1b1;
	box-sizing: border-box;
}
.join .agree input:checked + label:before {
	background: var(--bg) url("../images/check.svg?v=1")no-repeat 50% 50%;
	border: 1px solid var(--bg);
}
.join .agree input:disabled + label {
	padding-left: 0;
	color: #b1b1b1;
}
.join .agree input:disabled + label:before {
	display: none;
}
.join .agree .box {
	gap: 15px;
}
.join .agree .box > div {
	position: relative;
}
.join .agree .box > div button {
	position: absolute;
	top: 0;
    right: 0;
	display: block;
	font-size: 1.2rem;
	color: var(--bg);
	box-sizing: border-box;
}
.join .join_btn {
	height: 48px;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: -0.32px;
	border-radius: 5px;
}
.join .member_out a {
	color: #b1b1b1;
	font-size: 1.2rem;
	letter-spacing: -0.24px;
}


@media screen and (max-width: 1450px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}