/* 전체 세로 중앙 정렬 */
.login-vertical-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	background-color: white;
}

/* 로그인 박스 */
.login-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px;
	background-color: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	width: 300px
}

/* 로고 + 텍스트 수평 정렬 */
.login-logo-row {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	gap: 0px;
}

.login-logo-img {
	width: 120px;
	height: auto;
	object-fit: contain;
}

.login-logo-text {
	font-family: 'Jua', sans-serif;
	font-size: 28px;
	color: #1f3d75;
	margin: 0;
}

/* 로그인 폼 */
.login-form {
	display: flex;
	flex-direction: column;
	width: 300px;
}

.login-form label {
	margin-bottom: 6px;
	font-weight: bold;
	color: #1f3d75;
}

.login-form input {
	padding: 12px;
	margin-bottom: 16px;
	background: #e6e6e6;
	border: none;
	border-radius: 4px;
	font-size: 14px;
}

.login-button-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	gap: 10px;
	margin-top: 10px;
}

.login-button {
	padding: 12px 0;
	background-color: #1f3d75;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
	padding: 10px 30px;
	width: 50%;
	transition: background 0.2s ease;
}

.login-button:hover {
	background-color: #153063;
}
.register-button {
	background-color: #1f3d75;
	;
	color: white;
	padding: 12px 0;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	width: 50%;
	cursor: pointer;
  }
