/* =========================================================
   VONA LOGIN
========================================================= */

.vona-login {
	min-height: calc(100vh - 72px);
	display: flex;
	align-items: center;
	padding: 100px 0 120px;
	background: #080808;
	color: #fff;
}

.vona-login-wrap {
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
}


/* =========================================================
   LOGIN HEADER
========================================================= */

.vona-login-head {
	margin-bottom: 48px;
	text-align: center;
}

.vona-login-head .vona-eyebrow {
	margin-bottom: 20px;

	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	color: #f5d000;
}

.vona-login-head h1 {
	margin: 0;

	font-size: clamp(30px, 4vw, 46px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -.035em;
}

.vona-login-desc {
	margin: 18px 0 0;

	font-size: 14px;
	line-height: 1.7;
	color: rgba(255,255,255,.5);
}


/* =========================================================
   SOCIAL LOGIN
========================================================= */

.vona-login-social {
	display: flex;
	flex-direction: column;
	gap: 10px;
}



/* Google */

.vona-login-google {
	background: #fff;
	border-color: #fff;
	color: #111;
}

.vona-login-google:hover {
	background: #f3f3f3;
	border-color: #f3f3f3;
}


/* Kakao */



/* Social Icon */

.vona-social-icon {
	position: absolute;
	left: 20px;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 24px;
	height: 24px;

	font-size: 18px;
	font-weight: 700;
}

.vona-login-google .vona-social-icon {
	font-family: Arial, sans-serif;
	color: #4285f4;
}

.vona-login-kakao .vona-social-icon svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: #111;
}


/* =========================================================
   DIVIDER
========================================================= */

.vona-login-divider {
	display: flex;
	align-items: center;
	gap: 18px;

	margin: 34px 0;
}

.vona-login-divider span {
	flex: 1;
	height: 1px;
	background: rgba(255,255,255,.1);
}

.vona-login-divider em {
	flex: none;

	font-size: 10px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: .12em;

	color: rgba(255,255,255,.3);
}


/* =========================================================
   FORM
========================================================= */

.vona-login-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.vona-form-field {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vona-form-field label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .14em;
	color: rgba(255,255,255,.65);
}

.vona-form-field input {
	width: 100%;
	height: 58px;

	padding: 0 18px;

	border: 1px solid rgba(255,255,255,.14);
	outline: none;

	background: #111;
	color: #fff;

	font-family: inherit;
	font-size: 14px;

	box-sizing: border-box;

	transition:
		border-color .3s ease,
		background .3s ease;
}

.vona-form-field input::placeholder {
	color: rgba(255,255,255,.25);
}

.vona-form-field input:focus {
	border-color: rgba(245,208,0,.7);
	background: #0e0e0e;
}


/* =========================================================
   PASSWORD / OPTION
========================================================= */

.vona-login-form-option {
	display: flex;
	justify-content: flex-end;

	margin-top: -4px;
}

.vona-login-form-option a {
	font-size: 11px;
	color: rgba(255,255,255,.45);
	text-decoration: none;

	transition: color .25s ease;
}

.vona-login-form-option a:hover {
	color: #f5d000;
}


/* =========================================================
   LOGIN BUTTON
========================================================= */

.vona-login-submit {
	width: 100%;
	height: 60px;

	margin-top: 4px;

	border: 0;

	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;

	cursor: pointer;

	transition:
		transform .3s ease,
		background .3s ease;
}

.vona-login-submit:hover {
	transform: translateY(-2px);
}


/* =========================================================
   SIGN UP
========================================================= */

.vona-login-signup {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	margin-top: 42px;

	font-size: 11px;
	color: rgba(255,255,255,.35);
}

.vona-login-signup a {
	color: #f5d000;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: .08em;

	transition: opacity .25s ease;
}

.vona-login-signup a:hover {
	opacity: .7;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.vona-login {
		min-height: calc(100vh - 72px);
		padding: 70px 20px 90px;
	}

	.vona-login-wrap {
		max-width: none;
	}

	.vona-login-head {
		margin-bottom: 38px;
	}

	.vona-login-head h1 {
		font-size: 30px;
	}

	.vona-login-desc {
		font-size: 13px;
	}

	.vona-login-social-btn,
	.vona-form-field input {
		height: 56px;
	}

	.vona-login-divider {
		margin: 28px 0;
	}

}

.vona-login {
	min-height: calc(100vh - 72px);

	display: flex;
	align-items: center;
	justify-content: center; /* 추가 */

	padding: 100px 0 120px;

	background: #080808;
	color: #fff;
}

.vona-login-submit {
	width: 100%;
	height: 60px;

	margin-top: 4px;

	border: 0;
	background: #f5d000;
	color: #000;

	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;

	cursor: pointer;

	transition:
		transform .3s ease,
		background .3s ease;
}

.vona-login-submit:hover {
	transform: translateY(-2px);
	background: #ffe100;
}


.vona-google-login {
	width: 100%;
}

vona-login-wrap {
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
}

.vona-google-login {
	width: 100%;
}

#google-login-button {
	width: 100%;
}

#google-login-button > div {
	width: 100% !important;
}