/** font **/
@import url("/Css/Fontawesome/js/all.js?ver=1.01");
@import url("/Css/Fontawesome/webfonts/Pretendard.css");
@import url("/Css/Fontawesome/webfonts/NotoSansKR.css");
/* Reset */
*,
::after,
::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:focus {outline: 0;}
:root {
	-webkit-tap-highlight-color:transparent;
	-webkit-text-size-adjust:100%;
	text-size-adjust:100%;
	cursor:default;
	line-height:1.5;
	overflow-wrap:break-word;
	word-break:break-word;
	tab-size:4;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {display: block;}
nav, main, footer, header, article, section, aside {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {height: 100%;	line-height: 1.15; -webkit-text-size-adjust: 100%; overflow-x: hidden;}
body {
    font-family: "Pretendard","NotoSansKR", "돋움", dotum, Helvetica, Arial, Tahoma, sans-serif;
    background: #fff;
    width: 100%;
    height: 100%;
    line-height: 1;
    overflow-x: hidden;
}
a {background-color: transparent; text-decoration: none; color: inherit;}
ol, ul, li {list-style: none;}
table {border-collapse: collapse; border-spacing: 0;}
input, button, textarea, select {font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0;}
button {border: none; background: none; cursor: pointer;}
img, video {max-width: 100%; height: auto; vertical-align: middle;}
h1, h2, h3, h4, h5, h6 {font-size: inherit; font-weight: inherit;}

input[type='text']:disabled {background:#fafafa;}
input[type='text']:read-only {background:#fafafa;}
/* input 오류 색상 */
input[type=text].Error {outline: 1px solid #ff3300;}

/* 1920px, 1680px 해상도에서 80% 스케일 적용 */
@media screen and (width: 1920px), screen and (width: 1680px) {
	:root {zoom: 0.8;}
	/* Chrome/Edge: zoom:0.8 적용 시 100vh는 그대로 1080px이므로 125vh(=1080/0.8)로 보정 */
	.container {height: calc(125vh - 133px);}
	/* Firefox */
	@-moz-document url-prefix() {
		body {transform: scale(0.8); transform-origin: top center; min-height: 125vh;}
		.container {height: calc(125vh - 133px);}
	}
	/* Safari (iOS) */
	@supports (-webkit-touch-callout: none) {
		body {-webkit-transform: scale(0.8); -webkit-transform-origin: top center; min-height: 125vh;}
		.container {height: calc(125vh - 133px);}
	}
}

/* header */
header {width: 100%;}
.nhs-header-top-wrap {width: 100%; border-bottom: 1px solid #e5e5e5;}
.nhs-header-container {max-width: 1510px; margin: 0 auto; padding: 0 40px;}
.nhs-header-top {display: flex; justify-content: space-between; align-items: center; height: 73px;}
.nhs-logo a {display: flex; align-items: center;}
.nhs-logo img {width: auto; height: auto;}
.nhs-auth-buttons {display: flex; gap: 10px;}
.nhs-btn-login, .nhs-btn-register {padding: 10px 24px; border-radius: 6px; font-size: 15px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; border: none; position: relative; overflow: hidden;}
.nhs-btn-login::before, .nhs-btn-register::before {content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s;}
.nhs-btn-login:hover::before, .nhs-btn-register:hover::before {left: 100%;}
.nhs-btn-login {background: #3269bf; color: #fff; box-shadow: 0 4px 12px rgba(50, 105, 191, 0.3);}
.nhs-btn-login:hover {background: #2557a6;}
.nhs-btn-login:active {transform: scale(0.95); box-shadow: 0 2px 8px rgba(50, 105, 191, 0.4);}
.nhs-btn-register {background: linear-gradient(to right, #2b2b74, #1330ac); color: #fff; box-shadow: 0 4px 12px rgba(43, 43, 117, 0.3);}
.nhs-btn-register:hover {opacity: 0.9;}
.nhs-btn-register:active {transform: scale(0.95); box-shadow: 0 2px 8px rgba(43, 43, 117, 0.4);}
.nhs-header-bottom-wrap {width: 100%; border-bottom: 1px solid #e5e5e5;}
.nhs-header-bottom {display: flex; align-items: center; gap: 20px; height: 60px;}
.nhs-quick-btns {display: flex; gap: 8px;}
.nhs-quick-btn {width: 92px; height: 36px; background: #fff; border: 1px solid #ddd; border-radius: 4px; font-size: 15px; font-weight: 600; color: #333; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px; transition: all 0.2s;}
.nhs-quick-btn:hover {background: #e8e8e8;}
.nhs-quick-btn i {font-size: 12px;}
.nhs-nav {display: flex; gap: 50px; margin-left: auto; height: 100%; align-items: center;}
.nhs-nav-item {position: relative; display: flex; align-items: center; height: 100%; font-size: 20px; font-weight: 500; color: #000; cursor: pointer; transition: color 0.2s;}
.nhs-nav-item::after {content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: #3366ff; transition: width 0.3s ease;}
.nhs-nav-item:hover {color: #3366ff;}
.nhs-nav-item:hover::after {width: 100%;}
.nhs-nav-item:hover .nhs-submenu {display: block; animation: fadeInDown 0.3s ease;}
.nhs-submenu {display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: #fff; border-radius: 12px; border: none; box-shadow: 0 8px 24px rgba(0,0,0,0.12); min-width: 200px; white-space: nowrap; z-index: 999999; padding: 8px; margin-top: 0;}
.nhs-submenu a {display: block; padding: 12px 20px; color: #333; font-size: 16px; font-weight: 500; text-decoration: none; transition: all 0.2s ease; position: relative; border-radius: 8px; margin: 2px 0;}
.nhs-submenu a:hover {background: #f0f4ff; color: #3366ff; transform: translateX(4px);}
@keyframes fadeInDown {from {opacity: 0; transform: translateX(-50%) translateY(-10px);} to {opacity: 1; transform: translateX(-50%) translateY(0);}}
.nhs-mobile-toggle {display: none;}
.nhs-mobile-menu {display: none;}
.nhs-mobile-user-menu {display: none;}
.nhs-mobile-login-menu {display: none;}
@media (max-width: 1024px) {
    .nhs-header-container {padding: 0 20px;}
    .nhs-header-top {height: 60px;}
    .nhs-logo img {width: auto; height: auto;}
    .nhs-auth-buttons {gap: 8px;}
    .nhs-btn-login, .nhs-btn-register {padding: 8px 18px; font-size: 14px;}
    .nhs-header-bottom {height: 50px; flex-wrap: wrap;}
    .nhs-nav {gap: 20px; margin-left: auto;}
    .nhs-nav-item {font-size: 18px;}
    .nhs-quick-btns {gap: 6px;}
    .nhs-quick-btn {width: 85px; height: 25px; font-size: 13px;}
    .nhs-submenu {min-width: 200px; padding: 12px 0;}
    .nhs-submenu a {padding: 12px 24px; font-size: 16px;}
}
@media (max-width: 768px) {
    .nhs-header-container {padding: 0 15px;}
    .nhs-header-top {height: 55px;}
    .nhs-logo img {width: auto; height: 28px;}
    .nhs-auth-buttons {display: none;}
    .nhs-header-bottom {display: none;}
    .nhs-mobile-toggle {display: flex; align-items: center; gap: 10px;}
    .nhs-mobile-menu-btn {width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: linear-gradient(to right, #2b2b75, #1330ab); border-radius: 6px; cursor: pointer; border: none; box-shadow: 0 4px 12px rgba(43, 43, 117, 0.3); transition: all 0.3s ease; position: relative; overflow: hidden;}
    .nhs-mobile-menu-btn::before {content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s;}
    .nhs-mobile-menu-btn:hover::before {left: 100%;}
    .nhs-mobile-menu-btn:active {transform: scale(0.95); box-shadow: 0 2px 8px rgba(43, 43, 117, 0.4);}
    .nhs-mobile-menu-btn i {font-size: 18px; color: #fff;}
    .nhs-mobile-user-btn {width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: #3269bf; border-radius: 6px; cursor: pointer; border: none; box-shadow: 0 4px 12px rgba(50, 105, 191, 0.3); transition: all 0.3s ease; position: relative; overflow: hidden;}
    .nhs-mobile-user-btn::before {content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s;}
    .nhs-mobile-user-btn:hover::before {left: 100%;}
    .nhs-mobile-user-btn:active {transform: scale(0.95); box-shadow: 0 2px 8px rgba(50, 105, 191, 0.4);}
    .nhs-mobile-user-btn i {font-size: 16px; color: #fff;}
    .nhs-mobile-login-btn {width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: #3269bf; border-radius: 6px; cursor: pointer; border: none; box-shadow: 0 4px 12px rgba(50, 105, 191, 0.3); transition: all 0.3s ease; position: relative; overflow: hidden;}
    .nhs-mobile-login-btn::before {content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s;}
    .nhs-mobile-login-btn:hover::before {left: 100%;}
    .nhs-mobile-login-btn:active {transform: scale(0.95); box-shadow: 0 2px 8px rgba(50, 105, 191, 0.4);}
    .nhs-mobile-login-btn i {font-size: 16px; color: #fff;}
    .nhs-mobile-menu {position: fixed; top: 0; left: -100%; width: 280px; height: 100%; background: #fff; z-index: 9999; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); overflow-y: auto; box-shadow: 2px 0 10px rgba(0,0,0,0.1); opacity: 0;}
    .nhs-mobile-menu.active {left: 0 !important; display: block !important; opacity: 1 !important; animation: slideInLeft 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);}
    @keyframes slideInLeft {from {left: -100%; opacity: 0;} to {left: 0; opacity: 1;}}
    .nhs-mobile-header {display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid #e5e5e5;}
    .nhs-mobile-header .nhs-logo img {height: 24px;}
    .nhs-mobile-close {width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; background: #f5f5f5; border-radius: 0; cursor: pointer; border: none;}
    .nhs-mobile-close i {font-size: 18px;}
    .nhs-mobile-auth {padding: 20px; border-bottom: 1px solid #e5e5e5;}
    .nhs-mobile-auth-btns {display: flex; gap: 8px;}
    .nhs-mobile-auth-btns .nhs-btn-login, .nhs-mobile-auth-btns .nhs-btn-register {flex: 1; text-align: center; padding: 12px;}
    .nhs-mobile-quick {padding: 15px 20px; border-bottom: 1px solid #e5e5e5; opacity: 0; transform: translateX(-20px); animation: slideInMenuItem 0.3s ease forwards; animation-delay: 0.05s;}
    .nhs-mobile-quick-title {font-size: 14px; color: #999; margin-bottom: 12px; font-weight: 500;}
    .nhs-mobile-quick-list {display: flex; gap: 8px;}
    .nhs-mobile-quick-list .nhs-quick-btn {flex: 1; justify-content: space-between; padding: 10px 12px; font-size: 13px; border-radius: 0;}
    .nhs-mobile-nav {padding: 10px 0; display: flex; flex-direction: column;}
    .nhs-mobile-nav-parent {border-bottom: 1px solid #f5f5f5; opacity: 0; transform: translateX(-20px); animation: slideInMenuItem 0.3s ease forwards;}
    .nhs-mobile-nav-parent:nth-child(1) {animation-delay: 0.1s;}
    .nhs-mobile-nav-parent:nth-child(2) {animation-delay: 0.15s;}
    .nhs-mobile-nav-parent:nth-child(3) {animation-delay: 0.2s;}
    .nhs-mobile-nav-parent:nth-child(4) {animation-delay: 0.25s;}
    .nhs-mobile-nav-parent:nth-child(5) {animation-delay: 0.3s;}
    .nhs-mobile-nav-parent:nth-child(6) {animation-delay: 0.35s;}
    @keyframes slideInMenuItem {from {opacity: 0; transform: translateX(-20px);} to {opacity: 1; transform: translateX(0);}}
    .nhs-mobile-nav-parent:last-child {border-bottom: none;}
    .nhs-mobile-nav-title {padding: 15px 20px; font-size: 16px; font-weight: 600; color: #000; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s;}
    .nhs-mobile-nav-title:hover {background: #f8f8f8;}
    .nhs-mobile-nav-title i {font-size: 12px; transition: transform 0.3s;}
    .nhs-mobile-nav-parent.active .nhs-mobile-nav-title i {transform: rotate(180deg);}
    .nhs-mobile-submenu {display: none; background: #f9f9f9;}
    .nhs-mobile-submenu-item {display: block; padding: 12px 20px 12px 40px; font-size: 15px; color: #555; text-decoration: none; border-top: 1px solid #f0f0f0; transition: all 0.2s;}
    .nhs-mobile-submenu-item:hover {background: #f0f0f0; color: #3366ff; padding-left: 45px;}
    .nhs-mobile-submenu-item:active {background: #e8e8e8;}
    .nhs-mobile-overlay {display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 9998; opacity: 0; transition: opacity 0.3s ease;}
    .nhs-mobile-overlay.active {display: block; animation: fadeIn 0.3s ease forwards;}
    @keyframes fadeIn {from {opacity: 0;} to {opacity: 1;}}
    .nhs-mobile-user-menu {display: none; position: absolute; top: 100%; right: 0; background: white; border: 1px solid #e0e0e0; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); min-width: 200px; overflow: hidden; z-index: 1001; margin-top: 5px; max-height: 400px; overflow-y: auto;}
    .nhs-mobile-user-menu.active {display: block !important;}
    .nhs-mobile-user-list {padding: 0;}
    .nhs-mobile-user-list a {display: flex; align-items: center; gap: 10px; padding: 12px 16px; color: #333; text-decoration: none; border-bottom: 1px solid #f0f0f0; transition: all 0.2s; font-size: 14px;}
    .nhs-mobile-user-list a:last-child {border-bottom: none;}
    .nhs-mobile-user-list a i {font-size: 16px; color: #3269bf; min-width: 20px;}
    .nhs-mobile-user-list a span {flex: 1;}
    .nhs-mobile-user-list a:hover {background: #f8f9fa;}
    .nhs-mobile-user-list a.logout-link {color: #dc3545;}
    .nhs-mobile-user-list a.logout-link i {color: #dc3545;}
    .nhs-mobile-login-menu {display: none; position: absolute; top: 100%; right: 0; background: white; border: 1px solid #e0e0e0; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); min-width: 150px; overflow: hidden; z-index: 1001; margin-top: 5px;}
    .nhs-mobile-login-menu.active {display: block !important;}
    .nhs-mobile-login-menu .nhs-mobile-user-list {padding: 0;}
    .nhs-mobile-login-menu .nhs-mobile-user-list a {display: flex; align-items: center; gap: 10px; padding: 12px 16px; color: #333; text-decoration: none; border-bottom: 1px solid #f0f0f0; transition: all 0.2s; font-size: 14px;}
    .nhs-mobile-login-menu .nhs-mobile-user-list a:last-child {border-bottom: none;}
    .nhs-mobile-login-menu .nhs-mobile-user-list a i {font-size: 16px; color: #3269bf; min-width: 20px;}
    .nhs-mobile-login-menu .nhs-mobile-user-list a:hover {background: #f8f9fa;}
    .nhs-mobile-toggle {position: relative;}
}
.mobile-login {display: none; z-index: 1001;}
.mobile-login-icon {font-size: 20px; color: #333; cursor: pointer; padding: 10px; position: relative; z-index: 1001;}
.mobile-login-menu {display: none; position: absolute; top: 100%; right: 0; background: white; border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 10px; overflow: hidden; z-index: 1001; min-width: 150px; padding: 8px 0;}
.mobile-login-icon i {display: block; padding: 5px;}
@media (max-width: 1280px) {
    .mobile-login {display: flex; align-items: center;}
    .mobile-login-icon {display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #f5f5f5; color: #333; font-size: 20px; cursor: pointer; transition: all 0.3s ease;}
    .mobile-login-menu {display: none; position: absolute; top: 50px; right: 0; background: white; border: none; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); min-width: 180px; overflow: hidden; z-index: 1001; padding: 8px 0;}
    .mobile-login-menu a:last-child {border-bottom: none;}
    .mobile-login-menu a i {margin-right: 10px; color: #3858e9; font-size: 16px; transition: all 0.2s ease;}
    .mobile-login-menu a:hover {background: rgba(56, 88, 233, 0.08); color: #3858e9; transform: translateX(4px);}
    .mobile-login-menu a:hover i {color: #3858e9; transform: scale(1.1);}
    .mobile-login.active .mobile-login-menu {display: block; animation: fadeIn 0.3s ease;}
    .mobile-login-menu a {display: flex; align-items: center; padding: 15px 20px; color: #333; text-decoration: none; font-size: 15px; border-bottom: none; transition: all 0.2s ease; margin: 2px 6px; border-radius: 8px;}
    .mobile-login-icon:hover {background: #e8e8e8; transform: scale(1.05);}
}
@media (max-width: 480px) {
    .nhs-mobile-menu {width: 100%; max-width: 280px;}
    .nhs-mobile-overlay {display: none;}
    .nhs-mobile-overlay.active {display: block;}
}

/* 서브페이지 네비 */
.breadcrumb {display: flex; align-items: center; gap: 6px; font-size: 17px; color: #888;}
.breadcrumb .home {display: flex; align-items: center; color: #888; font-size: 17px; text-decoration: none; transition: color 0.2s;}
.breadcrumb .home:hover {color: #2a2b76;}
.breadcrumb .arr {margin: 0 2px; color: #ccc; font-size: 17px;}
.breadcrumb .path {color: #888; font-size: 17px;}
.breadcrumb .path.last {position: relative; cursor: pointer; display: inline-block;}
.breadcrumb .path.last .current {color: #2a2b76; font-weight: 600; display: flex; align-items: center; gap: 4px; transition: all 0.2s ease;}
.breadcrumb .path.last .current:hover {color: #1e3a8a;}
.breadcrumb .path.last .subnav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    max-width: max-content;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 100;
    backdrop-filter: blur(10px);
}
.breadcrumb .path.last .subnav-menu a {
    white-space: nowrap;
    display: block;
    padding: 7px 14px;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s;
    margin: 3px 6px;
    border-radius: 6px;
}
.breadcrumb .path.last .subnav-menu a:hover {background: rgba(42, 43, 118, 0.08); color: #2a2b76; transform: translateX(3px);}
.breadcrumb .path.last .current i {font-size: 12px; margin-left: 5px; transition: transform 0.3s ease;}
.breadcrumb .path.last .current.active i {transform: rotate(180deg);}
@media (max-width: 768px) {
    .breadcrumb .path,
    .breadcrumb .path.last .current {font-size: 13px;}
    .breadcrumb .path.last .subnav-menu {min-width: 120px;}
    .breadcrumb .path.last .subnav-menu a {padding: 6px 12px; font-size: 13px;}
}

/* footer */
footer {width: 100%; background: linear-gradient(to right, #122138, #112952); padding: 80px 0; margin-top: 50px;}

/* 상단 정보 바 */
.footer-top-bar {width: 100%; background: transparent; padding: 70px 0 0; display: flex; justify-content: center;}
.footer-top-container {max-width: 1422px; width: 100%; height: auto; min-height: 118px; background: #fff; padding: 24px 77px; display: flex; justify-content: flex-start; align-items: center; gap: 60px; box-sizing: border-box; border-radius: 90px;}
.footer-contact {display: flex; align-items: center; gap: 40px;}
.contact-label {font-size: 29px; font-weight: 700; color: #000; flex-shrink: 0;}
.contact-item {display: flex; align-items: center; gap: 15px;}
.contact-icon {width: 50px; height: 50px; background: #eeeeee; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;}
.contact-icon i {font-size: 24px; color: #666;}
.contact-avatar {width: auto; height: auto;}
.contact-info {display: flex; flex-direction: column; gap: 2px; padding: 10px 0;}
.contact-info strong {font-size: 20px; font-weight: 700; color: #000; line-height: 1.5;}
.contact-info span {font-size: 15px; color: #333; font-weight: 600; line-height: 1.5;}
.contact-name {font-size: 14px; color: #888; font-weight: 600; white-space: nowrap; min-width: 100px;}
.contact-number {font-size: 18px; font-weight: 700; color: #000;}
.contact-number-list {display: flex; flex-direction: column; gap: 0;}
.contact-number-row {display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid #f0f0f0;}
.contact-number-row:last-child {border-bottom: none; padding-bottom: 9px;}
.contact-number-row:first-child {padding-top: 9px;}
.footer-divider {width: 1px; height: 80px; background: #ddd; flex-shrink: 0; margin: 0 30px;}
.footer-account {display: flex; align-items: center; gap: 15px;}
.account-label {font-size: 29px; font-weight: 700; color: #000; flex-shrink: 0; margin-right: 20px;}
.account-list {display: flex; flex-direction: column; gap: 0;}
.account-info {display: flex; flex-direction: column; gap: 3px; padding: 8px 0;}
.account-divider {width: 100%; height: 1px; background: #eee;}
.account-bank-line {display: flex; align-items: center; gap: 10px;}
.bank-name {font-size: 15px; font-weight: 700; color: #1a5fc8;}
.separator {font-size: 15px; color: #ddd;}
.account-holder {font-size: 15px; color: #333; font-weight: 600;}
.account-number {font-size: 20px; font-weight: 700; color: #000;}

/* 메인 푸터 */
.footer-main {width: 100%; background: transparent; padding: 60px 0;}
.footer-container {max-width: 1490px; margin: 0 auto; padding: 0 40px; display: flex; gap: 100px;}
.footer-left {flex-shrink: 0;}
.footer-logo {display: flex; align-items: center; gap: 10px; margin-bottom: 20px;}
.footer-logo img {width: auto; height: 35px;}
.logo-text {font-size: 22px; font-weight: 700; color: #fff;}
.copyright {font-size: 12px; color: #fff; margin: 5px 0;}
.rights {font-size: 12px; color: #fff; margin: 5px 0;}
.footer-center {flex: 1;}
.footer-links {display: flex; gap: 30px; margin-bottom: 40px;}
.footer-links a {font-size: 20px; font-weight: 600; color: #fff; text-decoration: none; transition: color 0.3s ease;}
.footer-links a:hover {color: #a8c0e0; text-decoration: none;}
.footer-info p {font-size: 16px; color: #fff; line-height: 1.8; margin: 3px 0;}
.footer-info p strong {color: #fff; font-weight: 600;}
.footer-designed {margin-top: 15px; color: #7d95bc !important; font-size: 14px !important;}

@media (max-width: 1440px) {
	.footer-top-container {padding: 0 40px;}
	.footer-container {padding: 0 40px; gap: 60px;}
}
@media (max-width: 1280px) {
	.footer-top-container {padding: 0 30px; gap: 40px;}
	.footer-container {padding: 0 30px; gap: 40px;}
	.footer-contact {gap: 25px;}
	.footer-divider {margin: 0 20px;}
}
@media (max-width: 1024px) {
	.footer-top-container {width: 100%; height: auto; padding: 20px 30px;}
	.footer-container {padding: 0 30px; gap: 60px;}
}
@media (max-width: 920px) {
	.footer-top-container {width: 100%; height: auto; flex-direction: column; gap: 20px; padding: 20px; align-items: stretch;}
	.contact-label {font-size: 20px; text-align: center;}
	.footer-contact {flex-direction: column; gap: 15px; width: 100%; align-items: stretch;}
	.contact-item {width: 100%; justify-content: flex-start; padding: 15px; background: #f8f9fa; border-radius: 8px;}
	.contact-icon {width: 45px; height: 45px;}
	.contact-icon i {font-size: 20px;}
	.contact-info strong {font-size: 18px;}
	.contact-info span {font-size: 14px;}
	.contact-number {font-size: 18px;}
	.footer-divider {display: none;}
	.account-label {font-size: 20px; text-align: center; margin-right: 0; margin-bottom: 10px;}
	.footer-account {flex-direction: column; width: 100%; justify-content: flex-start; align-items: stretch; gap: 10px;}
	.account-info {padding: 15px; background: #f8f9fa; border-radius: 8px;}
	.account-bank-line {justify-content: flex-start;}
	.bank-name {font-size: 14px;}
	.account-holder {font-size: 14px;}
	.account-number {font-size: 18px; margin-top: 5px;}
	.footer-container {gap: 40px;}
	.footer-links {gap: 20px;}
	.footer-links a {font-size: 18px;}
	.footer-info p {font-size: 15px;}
}
@media (max-width: 768px) {
	footer {padding: 30px 0 0 0; margin-top: 0;}
	.footer-top-bar {padding: 50px 20px 0;}
	.footer-top-container {width: 100%; height: auto; flex-direction: column; gap: 20px; padding: 20px; align-items: stretch; border-radius: 20px;}
	.contact-label {font-size: 20px; text-align: center;}
	.footer-contact {flex-direction: column; gap: 15px; width: 100%; align-items: stretch;}
	.contact-item {width: 100%; justify-content: flex-start; padding: 15px; background: #f8f9fa; border-radius: 8px;}
	.contact-icon {width: 45px; height: 45px;}
	.contact-icon i {font-size: 20px;}
	.contact-info strong {font-size: 18px;}
	.contact-info span {font-size: 14px;}
	.contact-number {font-size: 16px;}
	.contact-name {font-size: 13px; min-width: 80px;}
	.contact-number-row {gap: 8px; padding: 8px 0;}
	.footer-divider {display: none;}
	.account-label {font-size: 20px; text-align: center; margin-right: 0; margin-bottom: 10px;}
	.footer-account {flex-direction: column; width: 100%; justify-content: flex-start; align-items: stretch; gap: 10px;}
	.account-info {padding: 15px; background: #f8f9fa; border-radius: 8px;}
	.account-bank-line {justify-content: flex-start;}
	.bank-name {font-size: 14px;}
	.account-holder {font-size: 14px;}
	.account-number {font-size: 18px; margin-top: 5px;}
	.footer-main {padding: 40px 0;}
	.footer-container {flex-direction: column; gap: 30px; padding: 0 20px;}
	.footer-left {width: 100%;}
	.footer-center {width: 100%;}
	.footer-links {display: flex; gap: 10px; margin-bottom: 20px; justify-content: center;}
	.footer-links a {flex: 1; max-width: 200px; padding: 12px 20px; font-size: 14px; font-weight: 600; text-align: center; background: #2a3f5f; border-radius: 5px; border: 1px solid #3a4f6f; transition: all 0.3s ease;}
	.footer-links a:hover {background: #3a4f6f; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.2);}
	.footer-info p {font-size: 13px;}
}
@media (max-width: 480px) {
	footer {padding: 40px 0 0 0; margin-top: 0;}
	.footer-top-bar {padding: 20px 15px 0;}
	.footer-top-container {padding: 15px; border-radius: 16px;}
	.contact-label {font-size: 18px;}
	.contact-item {padding: 12px;}
	.contact-icon {width: 40px; height: 40px;}
	.contact-icon i {font-size: 18px;}
	.contact-info strong {font-size: 16px;}
	.contact-info span {font-size: 13px;}
	.contact-number {font-size: 14px;}
	.contact-name {font-size: 12px; min-width: 70px;}
	.contact-number-row {gap: 6px; padding: 7px 0;}
	.account-label {font-size: 18px;}
	.account-info {padding: 12px;}
	.bank-name {font-size: 13px;}
	.account-holder {font-size: 13px;}
	.account-number {font-size: 16px;}
	.footer-main {padding: 30px 0;}
	.footer-container {padding: 0 15px; gap: 20px;}
	.footer-logo img {height: 30px;}
	.logo-text {font-size: 18px;}
	.footer-links {display: flex; flex-direction: row; gap: 8px; margin-bottom: 20px; justify-content: center;}
	.footer-links a {flex: 1; padding: 12px 15px; font-size: 13px; font-weight: 600; text-align: center; background: #2a3f5f; border-radius: 5px; border: 1px solid #3a4f6f; transition: all 0.3s ease;}
	.footer-links a:hover {background: #3a4f6f;}
	.footer-info p {font-size: 13px; line-height: 1.6;}
	.footer-designed {font-size: 12px; color: #7d95bc !important;line-height: 1.6;}
}

/* 환율정보 */
.footer-right {flex-shrink: 0; width: 500px;}
.exchange-rate-box {width: 500px; height: 226px; background: #162340; border-radius: 12px; padding: 20px 40px; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center;}
.exchange-rate-header {display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-shrink: 0;}
.exchange-rate-title {font-size: 20px; font-weight: 700; color: #fff;}
.exchange-rate-week {display: flex; align-items: center; gap: 5px; font-size: 14px; font-weight: 600; color: #a0b4cc;}
.exchange-rate-week i {font-size: 14px; color: #a0b4cc;}
.exchange-rate-card {background: #fff; border-radius: 10px; padding: 0 24px; display: flex; align-items: center; justify-content: space-around; height: 100px; flex-shrink: 0;}
.exchange-rate-item {display: flex; flex-direction: row; align-items: center; gap: 16px; flex: 1; justify-content: center;}
.exchange-divider {width: 1px; height: 60px; background: #e0e0e0; flex-shrink: 0;}
.exchange-icon {flex-shrink: 0;}
.exchange-info {display: flex; flex-direction: column; gap: 6px;}
.exchange-label {font-size: 13px; color: #666; font-weight: 500;}
.exchange-value {font-size: 22px; font-weight: 700; color: #1e2a47; line-height: 1;}

@media (max-width: 1024px) {
	.footer-right {width: 100%;}
	.exchange-rate-box {width: 100%;}
}
@media (max-width: 768px) {
	.footer-right {width: 100%; order: -1;}
	.exchange-rate-box {width: 100%; height: auto; padding: 18px 24px;}
	.exchange-rate-header {flex-wrap: wrap; gap: 6px; margin-bottom: 12px;}
	.exchange-rate-title {font-size: 17px;}
	.exchange-rate-week {font-size: 12px;}
	.exchange-rate-card {height: 90px; padding: 0 16px;}
	.exchange-rate-item {gap: 12px;}
	.exchange-value {font-size: 20px;}
}
@media (max-width: 480px) {
	.exchange-rate-box {padding: 16px 20px;}
	.exchange-rate-header {flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 10px;}
	.exchange-rate-title {font-size: 16px;}
	.exchange-rate-week {font-size: 12px;}
	.exchange-rate-card {height: 84px; padding: 0 12px; border-radius: 8px;}
	.exchange-rate-item {gap: 10px;}
	.exchange-label {font-size: 12px;}
	.exchange-value {font-size: 18px;}
	.exchange-divider {height: 48px;}
}
@media (max-width: 360px) {
	.exchange-rate-box {padding: 14px 16px;}
	.exchange-rate-card {height: 76px; padding: 0 10px;}
	.exchange-rate-item {gap: 8px;}
	.exchange-label {font-size: 11px;}
	.exchange-value {font-size: 16px;}
	.exchange-divider {height: 40px;}
}

/* 레이어 팝업 로그인/아이디 찾기 / 비밀번호 재발급 등 */
.layer-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    z-index: 9999;
}
.layer-popup-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 2rem;
}
.layer-popup-wrap {
    border: 1px solid #e9eaeb;
    border-radius: 1rem;
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin: 0 auto;
}
.layer-popup-title {text-align: center; font-size: 1.5rem; font-weight: bold; color: #333; margin-bottom: 2rem;}
.layer-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
    padding: 10px;
}
.layer-popup-form-group {margin-bottom: 1rem;}
.layer-popup-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.2s;
}
.layer-popup-input:focus {border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);}
.layer-popup-submit {
    width: 100%;
    padding: 0.75rem;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 1rem;
}
.layer-popup-submit:hover {background-color: #2563eb;}
.layer-popup-button-wrap {width: 100%;}

/* 로그인 팝업 전용 스타일 */
.layer-login-remember-forgot {display: flex; align-items: center; margin-bottom: 1.5rem;}
.layer-login-remember {display: flex; align-items: center;}
.layer-login-checkbox {width: 1rem; height: 1rem; margin-right: 0.5rem;}
.layer-login-forgot {margin-left: auto; color: #6b7280; text-decoration: none; font-size: 0.875rem;}
.layer-login-forgot:hover {text-decoration: underline;}
.layer-login-divider {
    text-align: center;
    margin: 2rem 0;
    color: #6b7280;
    font-size: 0.875rem;
    position: relative;
}
.layer-login-divider::before, .layer-login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #e5e7eb;
}
.layer-login-divider::before {left: 0;}
.layer-login-divider::after {right: 0;}
.layer-login-social {display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem;}
.layer-login-social-button {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: #f8fafc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    font-size: 0.875rem;
}
.layer-login-social-button:hover {background-color: #f3f4f6;}
.layer-login-signup {text-align: center;}
.layer-login-signup-link {color: #6b7280; text-decoration: none; font-size: 0.875rem;}
.layer-login-signup-link:hover {text-decoration: underline;}

/* 아이디 찾기 결과 */
.find-id-result-area {display: none;}
.find-id-result-message {text-align: center; color: #333; margin-bottom: 1.5rem;}
.find-id-result-id {text-align: center; font-size: 1.5rem; font-weight: bold; color: #333; margin-bottom: 2rem;}
.password-reset-info {text-align: center; color: #333; margin: 2rem 0; line-height: 1.6;}
.password-reset-info p {margin: 0.5rem 0; font-size: 0.95rem;}
.login-btn {margin-top: 0;}
@media screen and (min-width: 1023px) {
    .layer-popup-container.w50 {max-width: 70%;}
    .layer-popup-wrap {padding: 1.5rem;}
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .layer-popup-container {max-width: 24rem;}
    .layer-popup-wrap {padding: 1.5rem;}
}
@media screen and (max-width: 767px) {
    .layer-popup-container {padding: 0.7rem;}
    .layer-popup-wrap {padding: 1.25rem; border-radius: 0.75rem;}
    .layer-popup-title {font-size: 1.25rem; margin-bottom: 1.5rem;}
    .layer-popup-close {top: 10px; right: 10px; font-size: 20px;}
    .layer-login-remember-forgot {flex-direction: column; align-items: center; gap: 0.75rem;}
    .layer-login-remember {justify-content: center;}
    .layer-login-forgot {margin-left: 0; text-decoration: underline;}
    .password-reset-info {margin: 1.5rem 0; font-size: 0.9rem;}
}

/* 라디오버튼 스타일 */
.nomalRadio-label {
    display: inline-flex; 
    align-items: center; 
    cursor: pointer;
    padding: 2px 0;
    position: relative;
    transition: transform 0.2s ease;
	margin-right: 15px;
}
.nomalRadio-label:hover {transform: translateY(-1px); font-weight: 700;}
.nomalRadio-input {position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0;}
.nomalRadio-text {position: relative; padding-left: 26px; font-size: 16px; font-weight: 600; color: #555;}
.nomalRadio-text:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.2s;
}
.nomalRadio-input:checked + .nomalRadio-text {color: #4F46E5; font-weight: 600;}
.nomalRadio-input:checked + .nomalRadio-text:before {border-color: #4F46E5; background-color: #4F46E5;}
.nomalRadio-input:checked + .nomalRadio-text:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: white;
}

/* 셀렉트 박스 */
.nomal-Select {
	padding: 10px 46px 10px 15px;
    font-size: 15px;
	font-weight: 500;
    border: 1px solid #c8d3ef;
    border-radius: 3px;
	height: 40px;
	/*min-width: fit-content;*/
    width: auto;
    appearance: none;
    -webkit-appearance: none;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%234a6fa5' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center / 11px 7px,
        linear-gradient(to bottom, #dce8f8, #cad9f2) no-repeat right 0 top 0 / 38px 100%;
    cursor: pointer;
    color: #333;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.nomal-Select:focus {outline: none; border-color: #3269bf; box-shadow: 0 0 0 2px rgba(50,105,191,0.14);}
.nomal-Select:hover {border-color: #3269bf;}
.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
  max-width: 550px; /* 약간 줄임 */
  font-family: 'Noto Sans KR', sans-serif;
}

.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
}

.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  height: 40px;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.custom-select__trigger:hover {
  border-color: #bdbdbd;
}

.custom-select.open .custom-select__trigger {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.custom-select__trigger .selected-display {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 20px);
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #e0e0e0;
  border-top: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  max-height: 250px;
  overflow-y: auto;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-top: 2px;
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.custom-option {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap; /* 줄바꿈 방지 */
}

.custom-option:hover {
  background-color: #f7f9fc;
}

.custom-option.selected {
  background-color: #f0f7ff;
}

/* 화살표 디자인 */
.arrow {
  position: relative;
  height: 10px;
  width: 10px;
}

.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 7px;
  height: 2px;
  background-color: #757575;
  transition: all 0.3s;
}

.arrow::before {
  left: -2px;
  transform: rotate(45deg);
}

.arrow::after {
  left: 2px;
  transform: rotate(-45deg);
}

.open .arrow::before {
  transform: rotate(-45deg);
}

.open .arrow::after {
  transform: rotate(45deg);
}

/* 각 요소 스타일링 - 간격 조정 */
.option-number {
  display: inline-block;
  min-width: 20px;
  text-align: right;
  color: #757575;
  font-weight: 500;
  margin-right: 8px; /* 간격 줄임 */
}

.option-title {
  flex: 0 0 auto;
  color: #333;
  margin-right: 10px; /* 간격 줄임 */
  width: 100px; /* 너비 줄임 */
}

.option-price {
  color: #4a90e2;
  font-weight: 500;
  margin: 0 10px; /* 간격 줄임 */
  width: 80px; /* 너비 줄임 */
  text-align: right;
}

.option-date {
  color: #757575;
  font-size: 14px;
  margin-left: 10px; /* 간격 줄임 */
  width: 160px; /* 너비 줄임 */
  text-align: right;
}

/* 스크롤바 디자인 */
.custom-options::-webkit-scrollbar {
  width: 6px;
}

.custom-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.custom-options::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

.custom-options::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}
/* 체크박스 */
.Ani-checkbox {display: flex; align-items: center; margin-top: 10px;}
.Ani-checkbox .cbx {display: flex; align-items: center; gap: 5px;}
.Ani-checkbox input[type="checkbox"] {display: none; visibility: hidden;}
.Ani-checkbox .cbx {display: flex; flex-wrap: wrap; align-items: flex-start;}
.Ani-checkbox .cbx span {display: inline-block; vertical-align: middle; transform: translate3d(0, 0, 0); line-height: 20px;}
.Ani-checkbox .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098a9;
    transition: all 0.2s ease;
    margin-right: 8px;
    margin-top: 1px;
}
.Ani-checkbox .cbx span:nth-child(2) {flex: 1; margin-top: 0; font-size: 16px;}
.Ani-checkbox .cbx span:nth-child(3) {
    width: 100%;
    margin-top: 3px;
    margin-left: 26px;
    color: #666;
    font-size: 14px;
    line-height: 16px;
}
.Ani-checkbox .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}
.Ani-checkbox .cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #506eec;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}
.Ani-checkbox .cbx:hover span:first-child {border-color: #506eec;}
.Ani-checkbox .inp-cbx:checked + .cbx span:first-child {background: #506eec; border-color: #506eec; animation: wave-46 0.4s ease;}
.Ani-checkbox .inp-cbx:checked + .cbx span:first-child svg {stroke-dashoffset: 0;}
.Ani-checkbox .inp-cbx:checked + .cbx span:first-child:before {transform: scale(3.5); opacity: 0; transition: all 0.6s ease;}
/* 비활성화(disabled) 스타일 추가 */
.Ani-checkbox .inp-cbx:disabled + .cbx {opacity: 0.7;}
.Ani-checkbox .inp-cbx:disabled + .cbx span:first-child {background-color: #e9e9e9; border-color: #cccccc;}
.Ani-checkbox .inp-cbx:disabled + .cbx:hover span:first-child {border-color: #cccccc;}
.Ani-checkbox .inp-cbx:checked:disabled + .cbx span:first-child {background-color: #a8b1dc; border-color: #a8b1dc;}
.Ani-checkbox .inp-cbx:disabled + .cbx span:nth-child(2),
.Ani-checkbox .inp-cbx:disabled + .cbx span:nth-child(3) {color: #999;}
.Ani-checkbox .inp-cbx:disabled + .cbx span:first-child:before {display: none;}


/* 체크박스2 */
.checkbox-Form {position: relative; display: inline-flex; margin-left: 5px; width: 70px; height: 22px; margin-top: -5px; }
.checkbox-Form input {
    width: 100%;
	height: 22px;
    padding: 2px 6px;
    border: 2px solid #d0c9f9;
    border-radius: 3px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    text-align: center;
	justify-content: center;
}
.checkbox-Form input:focus {border-color: #473fa2;}
.checkbox-Form label {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #666;
    pointer-events: none;
    transition: all 0.2s ease;
}
.checkbox-Form input:focus + label,
.checkbox-Form input:not(:placeholder-shown) + label {top: -10px; left: 5px; font-size: 14px; background: #fff; padding: 0 4px;}
.checkbox-Form input::-webkit-outer-spin-button,
.checkbox-Form input::-webkit-inner-spin-button {-webkit-appearance: none; margin: 0;}
.checkbox-Form input[type=number] {-moz-appearance: textfield;}

/* 필수항목/일반항목 폼 소타일 */
.EssentialForm {display: flex; flex-direction: column; width: 100%;}
.Essential-form,.standardForm {position: relative; width: 100%; z-index: 1;}
.Essential-form label,.standardForm label {
	font-size: 13px;
	color: #c4c4c4;
	position: absolute;
	font-weight: 500;
	top: -20px;
	left: 20px;
	background-color: #fff;
	transition: all .3s ease;
	align-items: center;
	gap: 4px;
	z-index: 0;
	pointer-events: none;
}
.Essential-form input,.standardForm input {
	padding: 10px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.07);
	outline: 0;
	width: 100%;
	background-color: #fff;
	z-index: 1;
}
.Essential-form input:placeholder-shown+ label {top: 0;	background-color: transparent; z-index: 0;}
.Essential-form input:focus {border-color: #d1e6fa;}
.Essential-form input:focus+ label,
.Essential-form input:not(:placeholder-shown)+ label {
	top: -2px;
	left: 20px;
	background-color: #fff;
	color: #aaa;
	font-weight: 400;
	font-size: 13px;
	transform: translateY(-50%);
	z-index: 2;
	line-height:1em;
}
.Essential-form input:not(:placeholder-shown) + label .bigBulet {color: #red;}
.standardForm input {height: 40px;}
.standardForm input:placeholder-shown+ label {top: 13px; background-color: transparent;	z-index: 0;}
.standardForm input:focus {border-color: #d1e6fa;}
.standardForm input:focus+ label,
.standardForm input:not(:placeholder-shown)+ label {
	top: 0px;
	left: 20px;
	background-color: #fff;
	color: #aaa;
	font-weight: 400;
	font-size: 13px;
	transform: translateY(-50%);
	z-index: 2;
	line-height:1em;
}
.checkbox-Form input {height: 30px;}
.checkbox-Form input:placeholder-shown+ label {top: 13px; background-color: transparent; z-index: 0;}
.checkbox-Form input:focus {border-color: #d1e6fa;}
.checkbox-Form input:focus+ label,
.checkbox-Form input:not(:placeholder-shown)+ label {
	top: 0px;
	left: 20px;
	background-color: #fff;
	color: #000;
	font-weight: 400;
	font-size: 13px;
	transform: translateY(-50%);
	z-index: 2;
	line-height:1em;
}
.bigBulet {display: inline-block; transform: translateY(4px); font-weight: 900; font-size: 29px; color:#ed6262;}

/* 버튼 스타일 */
.formBtm-Btns {display: flex; gap: 15px; padding: 0 20px 30px; margin: 0 auto; justify-content: center;}
.formBtm-style1 {
	position: relative;
	overflow: hidden;
	width: 100%;
	background-color: #1466e0;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(20, 102, 224, 0.3);
}
.formBtm-style1::before {content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s;}
.formBtm-style1:hover::before {left: 100%;}
.formBtm-style1:hover {background-color: #1055c4;}
.formBtm-style1:active {transform: scale(0.95); box-shadow: 0 2px 8px rgba(20, 102, 224, 0.4);}
.formBtm-style2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 120px;
    height: 40px;
	font-weight: 600px;
	font-size: 16px;
    line-height: 38px;
    margin-top: 1px;
    padding: 0 16px;
    background-color: white;
    color: #010101;
    border: 1px solid #000;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}
.formBtm-style2::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border: solid #000;
    border-width: 0 1px 1px 0;
    transform: rotate(135deg);
}
.formBtm-style2:hover {background-color: #27408b; border: 1px solid #27408b; color: #fff;}
.formBtm-style2:hover::before {border-color: #fff;}
.formBtm-style3 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 8px 16px;
    background-color: white;
    border: 1px solid #b9b9b9;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #010101;
    cursor: pointer;
    transition: all 0.3s ease;
	z-index: 99999;
}
.formBtm-style3-gray {
	position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 8px 16px;
    border: 1px solid #b9b9b9;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
	background-color: white; 
    color: #ababab;
}
.formBtm-style3:hover {background-color: #27408b; border: 1px solid #27408b; color: #fff;}
.formBtm-style3 i {font-size: 15px;}
.formBtm-style3 .tooltip {
    position: absolute;
    bottom: 120%; /* 버튼 위에 배치 */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.formBtm-style3 .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}
.formBtm-style3:hover .tooltip {visibility: visible; opacity: 1;}
.formBtm-style4 {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 70px;
    padding: 24px 80px;
    background-color: #1466e0;
    border-radius: 50px;
    font-size: 25px;
	font-weight: 600;
	text-align: center;
    color: #fff;
    cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(20, 102, 224, 0.3);
}
.formBtm-style4::before {content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s;}
.formBtm-style4:hover::before {left: 100%;}
.formBtm-style4:hover {background-color: #1055c4; color:#fff;}
.formBtm-style4:active {transform: scale(0.95); box-shadow: 0 2px 8px rgba(20, 102, 224, 0.4);}
.formBtm-style5 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 70px;
    padding: 24px 50px;
    background-color: #fff;
    border-radius: 50px;
	border: 1px solid #000;
    font-size: 22px;
	font-weight: 500;
    color: #000;
    cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}
.formBtm-style5:hover {background-color: #f2f2f2; color:#000; border: 1px solid #000;}
.formBtm-style6 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 26px;
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 3px;
	border: 1px solid #333;
    font-size: 14px;
	font-weight: 500;
    color: #000;
    cursor: pointer;
	transition: all 0.3s ease;
}
.formBtm-style6:hover {background-color: #27408b; border: 1px solid #27408b; color:#fff;}
/* 아이콘 들어간 버튼 */
.formBtm-style7 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 40px;
    padding: 8px 16px;
    background-color: white;
    border: 1px solid #b9b9b9;
	justify-content: space-between;
    border-radius: 3px;
    font-size: 14px;
	font-weight: 500;
    color: #010101;
    cursor: pointer;
	transition: all 0.3s ease;
}
.formBtm-style7:hover {background-color: #27408b; border: 1px solid #27408b; color:#fff;}
.formBtm-style7 i {font-size: 14px;}
.formBtm-style8 {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 50px;
    padding: 18px 50px;
    background-color: #1466e0;
    border-radius: 6px;
    font-size: 20px;
	font-weight: 600;
    color: #fff;
    cursor: pointer;
	transition: all 0.3s ease;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(20, 102, 224, 0.3);
}
.formBtm-style8::before {content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s;}
.formBtm-style8:hover::before {left: 100%;}
.formBtm-style8:hover {background-color: #1055c4; color:#fff;}
.formBtm-style8:active {transform: scale(0.95); box-shadow: 0 2px 8px rgba(20, 102, 224, 0.4);}
.formBtm-style8 i {font-size: 22px;}
.formBtm-style9 {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background-color: #1466e0;
    border-radius: 6px;
    font-size: 16px;
	font-weight: 600;
    color: #fff;
    cursor: pointer;
	transition: all 0.3s ease;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(20, 102, 224, 0.3);
}
.formBtm-style9::before {content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s;}
.formBtm-style9:hover::before {left: 100%;}
.formBtm-style9:hover {background-color: #1055c4; color:#fff;}
.formBtm-style9:active {transform: scale(0.95); box-shadow: 0 2px 8px rgba(20, 102, 224, 0.4);}
.formBtm-style9 i {font-size: 18px;}
@media (max-width: 768px) {
    .formBtm-style4,.formBtm-style5,.formBtm-style8 {height: 50px; padding: 0 40px; font-size: 18px;}
}
@media (max-width: 480px) {
    .formBtm-style4,.formBtm-style5,.formBtm-style8 {height: 45px; padding: 0 20px; font-size: 16px; width: 100%; justify-content: center;}
}
@media (max-width: 768px) {
	.marginBottom {margin-bottom: 30px;}
}

/* 페이징 */
.pagination-section {display: flex; flex-direction: column; align-items: center; gap: 20px; margin-top: 30px;}
.pagination-wrap {display: flex; align-items: center; gap: 20px;}
.pagination-list {display: flex; align-items: center; gap: 5px;}
.pagination-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    background: #fff;
    cursor: pointer;
}
.pagination-arrow:hover {background: #f5f5f5;}
.pagination-item {
    min-width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
}
.pagination-item:hover {background: #f5f5f5;}
.pagination-item.active {background: #6052B4; color: #fff; border-color: #6052B4;}
.bottomBtn-wrap {display: flex; gap: 5px; justify-content: center;}
@media (max-width: 768px) {
    .pagination-section {margin-top: 20px; gap: 15px;}
    .pagination-wrap {gap: 15px;}
    .pagination-arrow {width: 28px; height: 28px;}
    .pagination-item {min-width: 28px; height: 28px; font-size: 13px;}
}

/* 약관 및 주의사항 */
.terms-box {background: #f5f9ff; border-radius: 10px; border: 1px solid #b8d9f5; border-left: 4px solid #2575c4; padding: 20px; box-shadow: 0 2px 8px rgba(37,91,160,0.07);}
.terms-text {height: 100px; overflow: hidden; transition: height 0.3s ease;}
.terms-text.expanded {height: auto;}
.terms-text p {margin: 0; padding: 4px 0; font-size: 16px; font-weight: 300; line-height: 1.5; color: #333;}
.termsMore-btn {
    width: 100%;
    background: transparent;
	border-top: 1px solid #b8d9f5;
    color: #2575c4;
    font-size: 18px;
	font-weight: 500;
    padding: 8px 0 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
	flex-direction: column;
    gap: 10px;
}
.termsMore-btn::before {
    content: '';
    display: inline-block;
	width: 15px;
    height: 15px;
    border-right: 3px solid #2575c4;
    border-bottom: 3px solid #2575c4;
    transform: rotate(45deg);
    margin-left: 8px;
    transition: transform 0.3s ease;
	margin-top: 10px;
}
.termsMore-btn.expanded::before {transform: rotate(-135deg);}
@media (max-width: 768px) {
    .terms-box {border-radius: 8px; padding: 15px;}
    .terms-text {height: 80px;}
    .terms-text p {font-size: 14px; padding: 3px 0;}
    .termsMore-btn {font-size: 16px; padding: 6px 0 0 0; gap: 8px;}
    .termsMore-btn::before {width: 12px; height: 12px; border-right: 2px solid #2575c4; border-bottom: 2px solid #2575c4; margin-top: 8px;}
}
@media (max-width: 480px) {
    .terms-box {border-radius: 6px; padding: 12px;}
    .terms-text {height: 70px;}
    .terms-text p {font-size: 13px; padding: 2px 0;}
    .termsMore-btn {font-size: 15px; padding: 5px 0 0 0; gap: 6px;}
    .termsMore-btn::before {width: 10px; height: 10px; margin-top: 6px;}
}

/* 퀵 배너 */
.quick-banner {display: none; position: fixed; right: 30px; top: 52%; transform: translateY(-60%); z-index: 100; transition: all 0.3s ease;}
.quick-menu {
	background: #fff;
	width: 110px;
	height: auto;
	padding: 25px 8px 35px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	border-radius: 62px;
	position: relative;
	transition: all 0.3s ease;
}
.quick-menu:hover {box-shadow: 0 8px 20px rgba(0,0,0,0.12); transform: translateY(-5px);}
.quick-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	padding: 10px 5px;
	width: 90%;
	position: relative;
	z-index: 1;
	transition: all 0.2s ease;
	border-radius: 5px;
	text-align: center;
}
.quick-btn.talk {position: relative;}
.quick-btn.yellow {background-color: #FFD700; color: #000; font-weight: 600; padding: 12px 5px; margin-top: -5px;}
.quick-btn.purple {background: #1466e0; color: #fff; font-weight: 600; padding: 12px 5px; margin-bottom: 2px;}
.quick-btn span {font-size: 14px; font-weight: 600; text-align: center; word-break: keep-all;}
.quick-btn.location {background-color: #f0f8ff; border: 1px solid #d0e6f7; padding: 12px 5px; position: relative;}
.location-icon {
	display: inline-block;
	width: 10px;
	height: 14px;
	background-color: #0078d4;
	position: relative;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	margin-bottom: 5px;
}
.location-icon::after {
	content: '';
	width: 5px;
	height: 5px;
	background-color: white;
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.quick-btn.location span {color: #0078d4; display: block;}
.quick-btn.location .phone {margin-top: 5px; font-size: 11px; line-height: 1.3;}
/* TOP 버튼 스타일 - 기존 스타일 유지 */
.top-btn {
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px auto 0;
	text-decoration: none;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	position: relative;
	z-index: 2;
	cursor: pointer;
	transition: all 0.3s ease;
}
.top-btn:hover {background: #f8f8f8; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.12);}
.top-btn i {width: 20px; height: 20px; transition: transform 0.3s ease;}
.top-btn:hover i {transform: translateY(-2px);}
@media (max-width: 1600px) {
	.quick-banner {display: none;}
}
@media (max-width: 768px) {
	.quick-banner {right: 15px;}
	.quick-menu {width: 90px; padding: 25px 5px 45px; gap: 5px;}
	.quick-btn {padding: 8px 5px;}
	.quick-btn span {font-size: 11px;}
}.quick-banner {position: fixed; right: 30px; top: 52%; transform: translateY(-60%); z-index: 100; transition: all 0.3s ease;}
.quick-menu {
	background: #fff;
	width: 110px;
	height: auto;
	padding: 25px 8px 35px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	border-radius: 62px;
	position: relative;
	transition: all 0.3s ease;
}
.quick-menu:hover {box-shadow: 0 8px 20px rgba(0,0,0,0.12); transform: translateY(-5px);}
.kakao3 {display: flex; flex-direction: column;	align-items: center; padding: 10px 5px;	width: 90%;	position: relative;}
.quick-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	padding: 10px 5px;
	width: 90%;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
	border-radius: 5px;
	text-align: center;
}
.quick-btn:hover {transform: translateY(-3px); box-shadow: 0 5px 10px rgba(0,0,0,0.05);}
.quick-btn.talk {position: relative;}
.quick-btn.yellow {
	background-color: #FFD700; 
	color: #000; 
	font-weight: 600; 
	padding: 12px 5px; 
	margin-top: -5px;
	transition: all 0.3s ease;
}
.quick-btn.yellow:hover {background-color: #FFE44D; transform: translateY(-3px) scale(1.03);}
.quick-btn.purple {
	background: #1466e0;
	color: #fff;
	font-weight: 600;
	padding: 12px 5px;
	margin-bottom: 2px;
	transition: all 0.3s ease;
}
.quick-btn.purple:hover {background: #1055c4; color: #fff; transform: translateY(-3px) scale(1.03);}
.quick-btn span {
	font-size: 14px; 
	font-weight: 600; 
	text-align: center; 
	word-break: keep-all;
	transition: all 0.3s ease; 
}
.quick-btn.location {
	background-color: #f0f8ff; 
	border: 1px solid #d0e6f7; 
	padding: 12px 5px; 
	position: relative;
	transition: all 0.3s ease; 
}
.quick-btn.location:hover {background-color: #e6f4ff; border-color: #b8dcf5; transform: translateY(-3px) scale(1.03);}
.location-icon {
	display: inline-block;
	width: 14px;
	height: 14px;
	background-color: #0078d4;
	position: relative;
	border-radius: 50% 50% 50% 50%;
	transform: rotate(-45deg);
	margin-bottom: 5px;
	transition: all 0.3s ease;
}
.quick-btn:hover .location-icon {background-color: #0066b8; transform: rotate(-45deg) scale(1.1);} /* 호버 시 아이콘 색상 및 크기 변경 */
.quick-btn.location span {color: #0078d4; display: block;}
.quick-btn.location:hover span {color: #0066b8;}
.quick-btn.location .phone {margin-top: 5px; font-size: 11px; line-height: 1.3;}
/* TOP 버튼 스타일 - 기존 스타일 유지에 애니메이션 추가 */
.top-btn {
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px auto 0;
	text-decoration: none;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	position: relative;
	z-index: 2;
	cursor: pointer;
	transition: all 0.3s ease;
}
.top-btn:hover {background: #f8f8f8; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.12);}
.top-btn i {width: 20px; height: 20px; transition: transform 0.3s ease;}
.top-btn:hover i {transform: translateY(-2px);}
.top-btn img {transition: all 0.3s ease;} /* 이미지 애니메이션 추가 */
.top-btn:hover img {transform: translateY(-3px);} /* 호버 시 이미지 위로 이동 */
@media (max-width: 1600px) {
	.quick-banner {display: none;}
}
@media (max-width: 768px) {
	.quick-banner {right: 15px;}
	.quick-menu {width: 90px; padding: 25px 5px 45px; gap: 5px;}
	.quick-btn {padding: 8px 5px;}
	.quick-btn span {font-size: 11px;}
}

/* 모바일에서만 보이는 탑이동 버튼 */
.btn-top {display: none;}
@media (max-width: 1024px) {
    .btn-top {
        position: fixed;
        right: 15px;
        bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.6);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .btn-top.show {opacity: 1; visibility: visible;}
    .btn-top .arrow {display: block; width: 9px; height: 9px; border: solid #fff; border-width: 2px 2px 0 0; transform: rotate(-45deg); transition: all 0.3s ease; }
    .btn-top .arrow::before,
    .btn-top .arrow::after {display: none;}
    .btn-top:hover .arrow {transform: rotate(-45deg);}
    .btn-top .text {color: #fff; font-size: 10px; font-weight: 600; line-height: 1; margin-top: -3px;}
}
@media (max-width: 480px) {
    .btn-top {right: 10px; bottom: 15px;}
}
/* 로그인 섹션 - 좌우 분할형 */
.login-section-page {
    display: flex;
    width: 100%;
    max-width: 820px;
    margin: 130px auto;
    border-radius: 14px;
    box-shadow: 0 8px 36px rgba(30, 74, 140, 0.15);
    overflow: hidden;
    border: 1px solid #dce8f8;
}
/* 좌측 브랜드 영역 */
.login-brand {
    width: 42%;
    flex-shrink: 0;
    background: linear-gradient(150deg, #1a3f7a 0%, #2a5ba0 55%, #1a6fe0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 30px;
    position: relative;
    overflow: hidden;
}
.login-brand::before {
    content: '';
    position: absolute;
    top: -70px; right: -50px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    pointer-events: none;
}
.login-brand::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.login-brand-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}
.login-brand-emblem {
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 14px;
    aspect-ratio: 1 / 1;
}
.login-brand-emblem img {display: block;}
.login-brand-title {
    font-size: 26px; font-weight: 700;
    letter-spacing: 0.06em; margin: 0 0 12px;
    color: #fff;
}
.login-brand-desc {
    font-size: 15px; color: rgba(255,255,255,0.78);
    line-height: 1.85; margin: 0 0 28px;
}
.login-brand-features {
    list-style: none; padding: 0; margin: 0;
    display: inline-flex; flex-direction: column; gap: 11px;
    text-align: left;
}
.login-brand-features li {
    font-size: 14px; color: rgba(255,255,255,0.88);
    display: flex; align-items: center; gap: 9px;
}
.login-brand-features li::before {
    content: '✓';
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; flex-shrink: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%; font-size: 10px;
}
/* 우측 폼 영역 */
.login-form-wrap {
    flex: 1;
    background: #fff;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-form-header {margin-bottom: 28px;}
.login-form-header h3 {
    font-size: 24px; font-weight: 700;
    color: #1e3a6e; letter-spacing: 0.1em;
    margin: 0 0 6px;
}
.login-form-header p {font-size: 13px; color: #999; margin: 0;}
.login-section {background: #fff; padding: 0; width: 414px; height: 432px; flex-shrink: 0;}
.login-section h3 {
    width: 414px;
    height: 73px;
    background: url("/Image/index/index-loginBG.png") no-repeat;
    margin: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #fff;
}
.login-form {padding: 0;}
.input-group {margin-bottom: 16px;}
.input-group label {display: block; color: #444; margin-bottom: 6px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em;}
.input-group input {
    width: 100%;
    padding: 0 14px;
    border: 1.5px solid #d8e2f0;
    height: 48px;
    border-radius: 7px;
    font-size: 15px;
    color: #222;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.input-group input:focus {border-color: #2a5ba0; outline: none; box-shadow: 0 0 0 3px rgba(42,91,160,0.10);}
.save-id {display: flex; align-items: center; margin-bottom: 20px; color: #666; font-size: 13px; gap: 6px;}
.save-id input {width: auto; height: auto; margin: 0;}
.save-id label {color: #555; cursor: pointer; margin: 0;}
.forgot-link {margin-left: auto; color: #2a5ba0; cursor: pointer; display: flex; gap: 4px; align-items: center;}
.forgot-link a {color: #2a5ba0; text-decoration: none; font-size: 13px;}
.forgot-link a:hover {text-decoration: underline;}
.divider-bar {color: #bbb; font-size: 11px;}
.button-group {display: flex; gap: 8px; margin-bottom: 0;}
.button-group button {border: none; cursor: pointer;}
.button-group button:active {transform: translateY(1px);}
.button-group button:disabled {opacity: 0.6; cursor: not-allowed;}
.login-btn {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #2a5ba0 0%, #1e4a8c 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: opacity 0.2s;
}
.login-btn:hover {opacity: 0.9;}
.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #aaa;
    font-size: 13px;
}
.login-divider::before,
.login-divider::after {content: ''; flex: 1; border-top: 1px solid #e0e8f4;}
.login-divider span {padding: 0 12px;}
.social-btn-group {display: flex; gap: 10px;}
.naver-login-btn {
    flex: 1;
    height: 48px;
    background: #03c75a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}
.naver-login-btn:hover {opacity: 0.9;}
.naver-login-btn img {width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1);}
.signup-btn {
    flex: 1;
    height: 48px;
    background: #fff;
    color: #2a5ba0;
    border: 1.5px solid #2a5ba0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.signup-btn:hover {background: #2a5ba0; color: #fff;}
.register-btn {height: 40px; display: flex; align-items: center; justify-content: center; background: #f1f5f9; color: #333; font-size: 18px; flex: 1;}
.register-btn img {max-width: 100%; height: auto; padding: 8px;}
@media (max-width: 720px) {
    .login-section-page {flex-direction: column; max-width: 460px;}
    .login-brand {width: 100%; padding: 24px 24px 20px;}
    .login-brand-emblem {margin-bottom: 14px;}
    .login-brand-title {font-size: 18px; margin-bottom: 6px;}
    .login-brand-desc {font-size: 12px; margin-bottom: 0; line-height: 1.6;}
    .login-brand-features {display: none;}
    .login-form-wrap {padding: 28px 28px 32px;}
}
@media (max-width: 520px) {
    .login-section-page {width: calc(100% - 28px); margin: 0 14px 40px; max-width: none;}
    .login-brand {padding: 20px 20px 16px;}
    .login-brand-emblem {margin-bottom: 10px;}
    .login-form-wrap {padding: 20px 20px 26px;}
    .login-form-header {margin-bottom: 20px;}
    .login-form-header h3 {font-size: 20px;}
    .input-group {margin-bottom: 14px;}
    .input-group input {height: 50px; font-size: 16px;} /* iOS zoom 방지 */
    .login-btn {height: 52px; font-size: 16px;}
    .login-divider {margin: 16px 0;}
    .social-btn-group {flex-direction: row; gap: 10px;}
    .naver-login-btn, .signup-btn {height: 58px; font-size: 14px; border-radius: 10px;}
    .save-id {font-size: 12px;}
    .forgot-link a {font-size: 12px;}
}
.login-info {padding: 20px 30px;}
.user-welcome {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 20px;
    padding-top: 5px;
    border-bottom: 1px solid #eee;
}
.user-welcome i {color: #3858e9; margin-right: 0;}
.user-stats {padding: 5px 0; border-bottom: 1px solid #eee;}
.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #f8fafc;
    padding: 15px;
    color: #000;
    border-radius: 3px;
}
.stat-item i {color: #3858e9; margin-right: 0;}
.stat-row {display: flex; gap: 10px;}
.stat-row .stat-item {flex: 1;}
.stat-item .label {color: #333; margin-right: 10px;}
.stat-item .value {font-weight: 600; color: #000;}
.stat-item span.label {margin-left: 10px;}
.user-buttons {display: flex; gap: 8px; margin-top: 20px;}
.mypage-btn {
    flex: 1;
    background: #7b10dd;
    color: white;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}
.logout-btn {
    flex: 1;
    background: #f1f5f9;
    color: #333;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

@media (max-width: 480px) {
    .login-info {padding: 15px 10px;}
    .stat-item {padding: 10px;}
    .stat-item i {margin-right: 0; font-size: 14px;}
    .stat-item .label {font-size: 14px; margin-right: 3px;}
    .stat-item .value {font-size: 14px;}
    .stat-row {gap: 3px;}
    .user-buttons {gap: 5px;}
    .mypage-btn, .logout-btn {padding: 25px 10px; font-size: 16px;}
}


/* cursor */
.Cursor {cursor:pointer;}














