/* 모달 공통 */
.modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.6);
	justify-content: center;
	align-items: center;
	z-index: 2000;
}

.modal.show { display: flex; }

.modal .modal-box {
	background: #fff;
	padding: 35px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.modal .modal-box h3 {
	margin: 0 0 20px;
	color: #333;
}
.modal .modal-box input,
.modal .modal-box select {
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 14px;
}
.modal .modal-box button {
	border: none;
	border-radius: 8px;
	cursor: pointer;
}

.modal .modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
}

/* 로그인 모달 */
#loginModal .modal-box {
	width: 320px;
}
#loginModal .modal-box input {
	width: 100%;
	margin-bottom: 12px;
}
#loginModal .modal-box button {
	width: 100%;
	background: #F4B400;
	padding: 8px 10px;
	font-size: 16px;
	font-weight: bold;
}

#loginModal .modal-box .bt:hover { background: #E68A00; }
