/* reCAPTCHA 버튼 가운데 정렬 */
.recaptcha-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
/* SNS 아이콘 공통 스타일 */
.sns-ico {
	display: inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 6px;
	border-radius: 50%;
}
.sns-signin-box,
.sns-signup-box {
	/* max-width: 480px; */
	margin: 10px auto 50px auto !important;
}

.sns-signup-box {
	max-width: 100%;
	margin: 10px auto 50px auto !important;
}

.sns-btn {
	max-width: 100%;
}

/* 로그인 폼 스타일 */
.login-container {
	max-width: 580px;
	margin: 48px auto 70px auto;
	padding: 32px 20px 20px 20px;
	background: #fff;
	border-radius: 14px;
	/* box-shadow: 0 2px 12px rgba(25, 118, 210, 0.10); */
	border: 1px solid #ddd;
	text-align: center;
}

.login-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 18px;
	letter-spacing: -1px;
	color: #424242;
}

.login-form {
	margin-bottom: 12px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
	width: 100%;
	padding: 12px 10px;
	margin-bottom: 12px;
	border: 1px solid #cfd8dc;
	border-radius: 6px;
	font-size: 15px;
	background: #f7fafd;
	transition: border 0.2s;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
	border: 1.5px solid #424242;
	outline: none;
	background: #fff;
}

.login-btns {
	margin-top: 10px;
}

.login-btns button {
	display: block;
	width: 100%;
	padding: 12px 0;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	margin-right: 0;
	/* box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08); */
	letter-spacing: 1px;
	transition: background 0.2s;
	color: #fff;
	border: none;
	background: #424242;
	cursor: pointer;
}

.login-btns button:hover {
	background: #bba05c;
}

.login-btns a {
	display: inline-block;
	padding: 10px 22px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(90deg, #1976d2 60%, #42a5f5 100%);
	margin-left: 0;
	margin-right: 0;
	/* box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08); */
	letter-spacing: 1px;
	transition: background 0.2s;
}

.login-btns a:hover {
	background: linear-gradient(90deg, #1565c0 60%, #42a5f5 100%);
}

.login-find {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.login-find a {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 6px;
	font-size: 13px;
	width: 50%;
	font-weight: 500;
	text-decoration: none;
	color: #424242;
	background: #eee;
	border: 1px solid #ddd;
	transition: background 0.2s, color 0.2s;
}

.login-find a:hover {
	background: #bba05c;;
	color: #fff;
}

.login-error {
	color: #e53935;
	font-size: 14px;
	margin-bottom: 10px;
	font-weight: 600;
}

.page-navigation {
	display: none;
}

/* 마이페이지 컨테이너 */
.mypage-container {
	max-width: 480px;
	margin: 40px auto;
	padding: 32px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

/* 마이페이지 스타일 */
.mypage-title {
	font-size: 28px;
	font-weight: 700;
	color: #424242;
	text-align: center;
	margin-bottom: 30px;
	letter-spacing: -1px;
}

.mypage-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 0;
}

.mypage-info:last-child {
	border-bottom: none;
}

.mypage-label {
	font-weight: 600;
	color: #333;
	font-size: 16px;
	min-width: 120px;
}

.mypage-value {
	color: #555;
	font-size: 16px;
	text-align: right;
	flex: 1;
}

.mypage-btns-box {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 30px;
}

.mypage-btn {
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
	background: linear-gradient(90deg, #1976d2 60%, #42a5f5 100%);
	color: #fff;
	box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
}

.mypage-btn:hover {
	background: linear-gradient(90deg, #1565c0 60%, #42a5f5 100%);
}

.mypage-btn.orange {
	background: linear-gradient(90deg, #ff9800 60%, #ff5722 100%);
}

.mypage-btn.orange:hover {
	background: linear-gradient(90deg, #ff7043 60%, #ff9800 100%);
}

.mypage-error {
	color: #e53935;
	font-size: 16px;
	text-align: center;
	margin-top: 20px;
	font-weight: 600;
}

/* 회원정보 수정 스타일 */
.edit-container {
	max-width: 600px;
	margin: 40px auto;
	padding: 32px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.edit-title {
	font-size: 28px;
	font-weight: 700;
	color: #424242;
	text-align: center;
	margin-bottom: 30px;
	letter-spacing: -1px;
}

.edit-error {
	color: #e53935;
	font-size: 14px;
	text-align: center;
	margin-bottom: 20px;
	font-weight: 600;
}

.edit-success {
	color: #1976d2;
	font-size: 15px;
	text-align: center;
	margin-bottom: 18px;
}

.edit-form {
	margin-bottom: 20px;
}

.edit-form label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.edit-form input[type="text"],
.edit-form input[type="password"],
.edit-form input[type="email"] {
	width: 100%;
	padding: 12px 10px;
	margin-bottom: 20px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-size: 15px;
	background: #f7fafd;
	transition: border 0.2s;
}

.edit-form input[type="text"]:focus,
.edit-form input[type="password"]:focus,
.edit-form input[type="email"]:focus {
	border: 1.5px solid #1976d2;
	outline: none;
	background: #fff;
}

.edit-form input[readonly] {
	background: #f5f5f5;
	color: #666;
}

.checkbox-group {
	margin-bottom: 20px;
}

.checkbox-group label {
	display: flex;
	align-items: center;
	font-size: 15px;
	color: #333;
	cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
	margin-right: 8px;
	accent-color: #1976d2;
}

.edit-btns-box {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 30px;
}

.edit-btn {
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
	background: linear-gradient(90deg, #1976d2 60%, #42a5f5 100%);
	color: #fff;
	box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
}

.edit-btn:hover {
	background: linear-gradient(90deg, #1565c0 60%, #42a5f5 100%);
}

.edit-btn.cancel {
	background: linear-gradient(90deg, #757575 60%, #9e9e9e 100%);
}

.edit-btn.cancel:hover {
	background: linear-gradient(90deg, #616161 60%, #757575 100%);
}

.edit-content {
	line-height: 1.6;
	white-space: pre-wrap;
	word-wrap: break-word;
	border: 1px solid #e0e0e0;
	padding: 16px;
	background: #f9f9f9;
	border-radius: 6px;
}

.edit-content pre {
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.sub-menu-select-row {
	display: none !important;
}

h2.title {
	display: none !important;
}

@media (max-width: 768px) {

	body {
		padding-top: 87px !important;
	}

	.edit-container {
		max-width: 100%;
		margin: 20px auto;
		padding: 16px;
	}

	.edit-content {
		font-size: 14px;
		padding: 12px;
	}

	.sub-menu-select-row {
		display: flex !important;
	}
}

/* 비밀번호 변경 스타일 */
.change-container {
	max-width: 600px;
	margin: 40px auto;
	padding: 32px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.change-title {
	font-size: 28px;
	font-weight: 700;
	color: #424242;
	text-align: center;
	margin-bottom: 30px;
	letter-spacing: -1px;
}

.change-error {
	color: #e53935;
	font-size: 14px;
	text-align: center;
	margin-bottom: 20px;
	font-weight: 600;
}

.change-success {
	color: #1976d2;
	font-size: 15px;
	text-align: center;
	margin-bottom: 18px;
}

.change-form {
	margin-bottom: 20px;
}

.change-form label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.change-form input[type="password"] {
	width: 100%;
	padding: 12px 10px;
	margin-bottom: 20px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-size: 15px;
	background: #f7fafd;
	transition: border 0.2s;
}

.change-form input[type="password"]:focus {
	border: 1.5px solid #1976d2;
	outline: none;
	background: #fff;
}

#pw-rules {
	font-size: 14px;
	color: #666;
	margin-bottom: 10px;
	line-height: 1.7;
}

.pw-rules-title {
	font-weight: 600;
}

#pw-rules span {
	font-weight: 600;
}

#pw-match-msg {
	font-size: 14px;
	margin-bottom: 10px;
}

.change-btns-box {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 30px;
}

.change-btn {
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
	background: linear-gradient(90deg, #ff9800 60%, #ff5722 100%);
	color: #fff;
	/* box-shadow: 0 2px 8px rgba(245, 124, 0, 0.2); */
}

.change-btn:hover {
	background: linear-gradient(90deg, #ff7043 60%, #ff9800 100%);
}

.change-btn.cancel {
	background: linear-gradient(90deg, #757575 60%, #9e9e9e 100%);
}

.change-btn.cancel:hover {
	background: linear-gradient(90deg, #616161 60%, #757575 100%);
}

.mypage-success-msg {
	background: linear-gradient(90deg, #1976d2 0%, #42a5f5 100%);
	color: #fff;
	font-size: 16px;
	text-align: center;
	padding: 16px 0 14px 0;
	margin-bottom: 20px;
	border-radius: 8px;
	font-weight: 600;
	letter-spacing: -1px;
	box-shadow: 0 2px 8px rgba(25, 118, 210, 0.2);
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	background-color: #fff;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 400px;
	border-radius: 8px;
	/* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); */
	position: relative;
}

.close {
	color: #aaa;
	position: absolute;
	top: 0px;
	right: 10px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover {
	color: #000;
}

.modal h3 {
	margin-top: 0;
	color: #1976d2;
}

.modal form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.modal input {
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.modal input:focus {
	border-color: #424242;
	outline: none;
}

.modal button {
	padding: 10px;
	background: #1976d2;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.modal button:hover {
	background: #1565c0;
}

#findIdResult,
#findPwResult {
	margin-top: 10px;
	color: #1976d2;
	font-weight: bold;
}

/* SNS Login Buttons */
.sns-signin-box,
.sns-signup-box {
	display: flex;
	flex-direction: row;
	gap: 12px;
	margin-top: 20px !important;
	margin-bottom: 0;
	width: 100%;
}

.sns-btn {
	width: calc((100% - 24px) / 3);
	padding: 14px 20px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: #666;
	cursor: pointer;
	transition: all 0.2s;
	text-align: center;
}

.sns-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sns-btn-naver {
	background: #03c75a;
}

.sns-btn-naver:hover {
	background: #02b351;
}

.sns-btn-kakao {
	background: #fee500;
	color: #000;
}

.sns-btn-kakao:hover {
	background: #fdd835;
}

.sns-btn-google {
	background: #4285f4;
}

.sns-btn-google:hover {
	background: #3367d6;
}



@media (max-width: 768px) {

	.sns-signin-box,
	.sns-signup-box {
		flex-direction: column;
		gap: 10px;
	}

	.sns-btn {
		width: 100% !important;
		padding: 12px 20px;
		font-size: 15px;
	}
}

.sns-btn {
	width: calc(100% / 3 - 8px);
	flex: none;
	padding: 12px 20px;
	font-size: 15px;
}

.sns-ico.naver {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect width='24' height='24' rx='5' fill='%2303C75A'/%3E%3Cpath d='M6 5h3v14H6zM15 5h3v14h-3zM9 5h3l3 14h-3z' fill='white'/%3E%3C/svg%3E");
}

.sns-ico.kakao {
	background-image: url("https://developers.kakao.com/assets/img/about/logos/kakaolink/kakaolink_btn_small.png");
}

.sns-ico.google {
	background-image: url("https://developers.google.com/identity/images/g-logo.png");
}

@media (max-width: 480px) {
	.login-container {
		max-width: 98vw;
		margin: 24px auto 50px auto;
		padding: 18px 6vw 16px 6vw;
		border-radius: 8px;
		box-shadow: 0 1px 6px rgba(25, 118, 210, 0.08);
	}

	.login-title {
		font-size: 16px;
		margin-bottom: 12px;
	}

	.login-form input[type="text"],
	.login-form input[type="password"] {
		font-size: 14px;
		padding: 10px 8px;
		margin-bottom: 10px;
		border-radius: 5px;
	}

	.login-btns button {
		font-size: 13px;
		padding: 9px 0;
		width: 100%;
		min-width: 0;
		margin-right: 0;
		margin-left: 0;
		margin-bottom: 6px;
		box-sizing: border-box;
	}

	.login-btns {
		margin-top: 8px;
	}

	.login-btns button:last-child,
	.login-btns a:last-child {
		margin-right: 0;
	}

	.login-find {
		flex-direction: column;
		gap: 7px;
		margin-top: 10px;
	}

	.login-find a {
		width: 100%;
		font-size: 12.5px;
		padding: 8px 0;
		box-sizing: border-box;
	}
}

.register-check-row {
	display: flex;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 0;
	width: 100%;
	min-height: 28px;
	position: relative;
}

.register-check-row input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.register-label-check {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 15px;
	color: #222;
	cursor: pointer;
	user-select: none;
	line-height: 1.6;
	padding-left: 0;
	min-height: 24px;
}

.register-label-check::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 8px;
	border: 2px solid #1976d2;
	border-radius: 4px;
	background: #fff;
	box-sizing: border-box;
	flex-shrink: 0;
}

.register-check-row input[type="checkbox"]:checked+.register-label-check::after {
	content: '';
	position: absolute;
	left: 6px;
	top: 50%;
	width: 8px;
	height: 14px;
	border: solid #1976d2;
	border-width: 0 3px 3px 0;
	transform: translateY(-50%) rotate(45deg);
	box-sizing: border-box;
}

.register-label-check:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 2px solid #1976d2;
	border-radius: 4px;
	background: #fff;
	box-sizing: border-box;
}

.register-check-row input[type="checkbox"]:checked+.register-label-check:after {
	content: '';
	position: absolute;
	left: 5px;
	top: 50%;
	width: 10px;
	height: 5px;
	border-left: 3px solid #1976d2;
	border-bottom: 3px solid #1976d2;
	transform: translateY(-50%) rotate(-45deg);
	box-sizing: border-box;
}

/* 동의 체크박스만 별도 그룹일 때 여백/정렬 */
.register-agree-group {
	margin-top: -10px;
	margin-bottom: 18px;
	padding-left: 2px;
}

/* 약관/개인정보 동의 영역 레이아웃 개선 */
.form-group {
	margin-bottom: 24px;
}

.register-label-title-wrap {
	margin-bottom: 6px;
}

.register-label-title {
	font-size: 15px;
	color: #222;
	font-weight: 600;
	display: block;
	margin-bottom: 2px;
}

.terms-box,
.privacy-box {
	background: #f7fafd;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 14px 12px 12px 12px;
	font-size: 14px;
	color: #333;
	margin-bottom: 8px;
	max-height: 120px;
	overflow-y: auto;
	line-height: 1.6;
}

.register-check-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	margin-bottom: 0;
	width: 100%;
	justify-content: flex-start;
	min-height: 28px;
	position: relative;
}

.register-check-row input[type="checkbox"] {
	flex-shrink: 0;
	margin-right: 6px;
}

.register-label-check {
	font-size: 15px;
	color: #222;
	margin: 0 0 0 0;
	cursor: pointer;
	user-select: none;
	line-height: 1.6;
	display: inline-block;
	padding-left: 0;
}

.form-check {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 0;
	background: none;
	border: none;
	box-shadow: none;
}

.register-label-check {
	font-size: 15px;
	color: #222;
	margin: 0;
	cursor: pointer;
	user-select: none;
	line-height: 1.6;
	display: inline-block;
	padding-left: 0;
}

input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: #1976d2;
	margin-right: 4px;
	margin-top: 0;
	vertical-align: middle;
	display: inline-block;
	position: static;
	box-sizing: border-box;
}

.register-label-check {
	font-size: 15px;
	color: #222;
	margin: 0;
	cursor: pointer;
	user-select: none;
}

.register-required {
	color: #e53935;
	font-size: 15px;
	font-weight: 700;
}

input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: #1976d2;
	margin-right: 4px;
}

/* 약관/개인정보 동의 제목 및 체크박스 시각 개선 */
.register-label-title-wrap {
	margin-bottom: 6px;
}

.register-label-title {
	font-size: 15px;
	color: #222;
	font-weight: 600;
	display: block;
	margin-bottom: 2px;
}

.register-check-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
}

.register-label-check {
	font-size: 15px;
	color: #222;
	margin: 0;
	cursor: pointer;
	user-select: none;
}

.register-required {
	color: #e53935;
	font-size: 15px;
	font-weight: 700;
}

/* member.css - 회원 관련 공통 스타일 */

.register-container {
	max-width: 600px;
	margin: 40px auto;
	background: #fff;
	border-radius: 12px;
	/* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10); */
	border: 1px solid #ddd;
	padding: 14px;
}

.register-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 32px;
	text-align: center;
	letter-spacing: -1px;
}

.form-group {
	margin-bottom: 32px;
	position: relative;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"] {
	width: 100%;
	border: none;
	border-bottom: 2px solid #e0e0e0;
	font-size: 18px;
	padding: 16px 0 8px 0;
	background: transparent;
	transition: border-color 0.3s;
	outline: none;
}

.form-group input:focus {
	border-bottom: 2px solid #1976d2;
}

.form-group label {
	position: absolute;
	top: 18px;
	left: 0;
	font-size: 16px;
	color: #888;
	pointer-events: none;
	transition: all 0.2s;
	background: #fff;
	padding: 0 4px;
}

.form-group .sex-label {
	position: static;
	font-size: 16px;
	color: #222;
	pointer-events: auto;
	background: transparent;
	padding: 0;
	display: block;
	margin-bottom: 8px;
}

.form-group .radio-group {
	display: flex;
	align-items: center;
	gap: 12px;
}

.form-group .radio-group label {
	position: static;
	font-size: 15px;
	color: #222;
	pointer-events: auto;
	background: transparent;
	padding: 0;
}

/* edit.jsp용 radio-group 스타일 */
.edit-form .radio-group {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.edit-form .radio-group label {
	display: inline-flex;
	align-items: center;
	font-size: 15px;
	color: #222;
	margin: 0;
	cursor: pointer;
}

.edit-form .radio-group input[type="radio"] {
	margin-right: 5px;
	margin-bottom: 0;
	width: auto;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
	top: -10px;
	font-size: 13px;
	color: #1976d2;
}

.form-group .check-btn {
	margin-left: 10px;
	padding: 8px 18px;
	font-size: 14px;
	border-radius: 4px;
	border: none;
	background: #1976d2;
	color: #fff;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 12px;
	height: 36px;
}

.checkbox-group {
	margin-bottom: 20px;
}

.checkbox-group label {
	font-size: 15px;
	color: #222;
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.checkbox-group input[type="checkbox"] {
	margin-right: 8px;
}

.terms-box,
.privacy-box {
	background: #f5f5f5;
	border: 1px solid #e0e0e0;
	padding: 18px;
	height: 120px;
	overflow-y: auto;
	font-size: 14px;
	margin-bottom: 8px;
	border-radius: 6px;
}

.form-check {
	margin-bottom: 18px;
}

.form-check label {
	font-size: 15px;
}

.register-btn {
	width: auto;
	min-width: 140px;
	padding: 12px 32px;
	background: linear-gradient(90deg, #1976d2 60%, #42a5f5 100%);
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
	letter-spacing: 1px;
	margin-top: 10px;
	transition: background 0.2s;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.register-btn:hover {
	background: linear-gradient(90deg, #1565c0 60%, #42a5f5 100%);
}

.result-container {
	max-width: 600px;
	margin: 50px auto;
	padding: 20px;
	text-align: center;
}

.result-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}

.result-success {
	color: #4CAF50;
}

.result-fail {
	color: #f44336;
}

.result-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
	background: #f9f9f9;
	border-radius: 5px;
	overflow: hidden;
}

.result-table th,
.result-table td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

.result-table th {
	background: #f0f0f0;
	font-weight: bold;
	width: 30%;
}

.result-table td {
	background: #fff;
}

.result-query {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	padding: 10px;
	margin: 10px 0;
	font-family: monospace;
	font-size: 12px;
	white-space: pre-wrap;
}

.result-btns {
	margin-top: 30px;
}

.result-btns a {
	display: inline-block;
	padding: 10px 20px;
	margin: 0 10px;
	text-decoration: none;
	border-radius: 5px;
}

.home-btn {
	background: #2196F3;
	color: white;
}

.login-btn {
	background: #4CAF50;
	color: white;
}