@charset "UTF-8"; * { margin: 0; padding: 0; box-sizing: border-box; } html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; } body { font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; line-height: 1.6; color: #1A1A2E; background-color: #FFFFFF; overflow-x: hidden; } ul, ol { list-style: none; } a { text-decoration: none; color: inherit; transition: all 0.3s ease; } img { max-width: 100%; height: auto; display: block; } button { font-family: inherit; font-size: inherit; line-height: inherit; cursor: pointer; background: transparent; border: none; padding: 0; } input, textarea, select { font-family: inherit; font-size: inherit; line-height: inherit; border: none; outline: none; } table { border-collapse: collapse; border-spacing: 0; } h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } ::selection { background-color: rgba(0, 73, 180, 0.2); color: #1A1A2E; } ::-moz-selection { background-color: rgba(0, 73, 180, 0.2); color: #1A1A2E; } body { font-size: 16px; font-weight: 400; color: #1A1A2E; } h1, .h1 { font-size: 56px; font-weight: 800; margin-bottom: 24px; } @media (max-width: 768px) { h1, .h1 { font-size: 40px; } } @media (max-width: 480px) { h1, .h1 { font-size: 32px; } } h2, .h2 { font-size: 48px; font-weight: 700; margin-bottom: 16px; } @media (max-width: 768px) { h2, .h2 { font-size: 32px; } } @media (max-width: 480px) { h2, .h2 { font-size: 24px; } } h3, .h3 { font-size: 40px; font-weight: 700; margin-bottom: 16px; } @media (max-width: 768px) { h3, .h3 { font-size: 24px; } } h4, .h4 { font-size: 32px; font-weight: 600; margin-bottom: 8px; } h5, .h5 { font-size: 24px; font-weight: 600; margin-bottom: 8px; } h6, .h6 { font-size: 20px; font-weight: 600; margin-bottom: 8px; } p { margin-bottom: 16px; line-height: 1.6; } p:last-child { margin-bottom: 0; } .text-primary { color: #0049b4; } .text-secondary { color: #c3dfea; } .text-dark { color: #1A1A2E; } .text-gray { color: #64748B; } .text-light { color: #94A3B8; } .text-white { color: #FFFFFF; } .text-left { text-align: left; } .text-center { text-align: center; } .text-right { text-align: right; } .font-regular { font-weight: 400; } .font-medium { font-weight: 500; } .font-semibold { font-weight: 600; } .font-bold { font-weight: 700; } .font-extrabold { font-weight: 800; } .text-xs { font-size: 12px; } .text-sm { font-size: 14px; } .text-base { font-size: 16px; } .text-lg { font-size: 20px; } .text-xl { font-size: 24px; } .lead { font-size: 20px; font-weight: 400; line-height: 1.8; color: #64748B; } .caption { font-size: 14px; color: #64748B; } .code { font-family: "Fira Code", "Courier New", monospace; font-size: 14px; background: #F8FAFC; padding: 2px 6px; border-radius: 6px; } a { color: #0049b4; } a:hover { color: #c3dfea; } blockquote { padding: 16px; margin: 16px 0; border-left: 4px solid #0049b4; background: #F8FAFC; font-style: italic; } blockquote p { margin-bottom: 0; } hr { border: none; border-top: 1px solid #E2E8F0; margin: 32px 0; } @keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(10deg); } } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } @keyframes slideInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } } @keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeInScale { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } } @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } @keyframes shimmer { 0% { transform: translateX(-100%) rotate(45deg); } 100% { transform: translateX(100%) rotate(45deg); } } @keyframes wave { 0% { transform: rotate(0deg); } 10% { transform: rotate(14deg); } 20% { transform: rotate(-8deg); } 30% { transform: rotate(14deg); } 40% { transform: rotate(-4deg); } 50% { transform: rotate(10deg); } 60% { transform: rotate(0deg); } 100% { transform: rotate(0deg); } } @keyframes popIn { 0% { opacity: 0; transform: scale(0.5); } 80% { transform: scale(1.1); } 100% { opacity: 1; transform: scale(1); } } @keyframes popupFadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } } @keyframes ripple { 0% { transform: scale(0); opacity: 1; } 100% { transform: scale(4); opacity: 0; } } @keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } .animate-float { animation: float 20s ease-in-out infinite; } .animate-bounce { animation: bounce 2s infinite; } .animate-spin { animation: spin 1s linear infinite; } .animate-pulse { animation: pulse 2s ease-in-out infinite; } .animate-fade-in { animation: fadeIn 0.6s ease-out; } .animate-slide-up { animation: slideInUp 0.8s ease-out; } .animate-slide-down { animation: slideInDown 0.6s ease-out; } .animate-pop { animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); } .delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; } .delay-3 { animation-delay: 0.3s; } .delay-4 { animation-delay: 0.4s; } .delay-5 { animation-delay: 0.5s; } .duration-fast { animation-duration: 0.3s; } .duration-normal { animation-duration: 0.6s; } .duration-slow { animation-duration: 1s; } .duration-slower { animation-duration: 2s; } .hover-grow { transition: transform 0.3s ease; } .hover-grow:hover { transform: scale(1.05); } .hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; } .hover-lift:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); } .hover-rotate { transition: transform 0.3s ease; } .hover-rotate:hover { transform: rotate(5deg); } .hover-shine { position: relative; overflow: hidden; } .hover-shine::before { content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; transform: rotate(45deg); transition: transform 0.6s ease; transform: translateX(-200%); } .hover-shine:hover::before { transform: translateX(200%) rotate(45deg); } :root { --primary-blue: #4B9BFF; --secondary-blue: #2E7FF7; --accent-cyan: #00D4FF; --accent-yellow: #FFD93D; --accent-orange: #FF6B6B; --accent-green: #6BCF7F; --accent-purple: #A78BFA; --text-dark: #1A1A2E; --text-gray: #64748B; --text-light: #94A3B8; --white: #FFFFFF; --gray-bg: #F8FAFC; --light-bg: #EFF6FF; --border-gray: #E2E8F0; --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05); --shadow-md: 0 4px 12px rgba(75, 155, 255, 0.1); --shadow-lg: 0 8px 24px rgba(75, 155, 255, 0.15); --shadow-xl: 0 16px 40px rgba(75, 155, 255, 0.2); } .blind { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } .global-header { position: fixed; top: 0; left: 0; right: 0; background-color: #ffffff; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 350; height: 112px; transition: all 0.3s ease; border-bottom: 1px solid #dddddd; } .global-header.index-header { background-color: #E5F8FF; } .header-content { display: flex; align-items: center; justify-content: space-between; height: 65px; max-width: 1920px; margin: 0 auto; padding: 0 20px; margin-top: 20px; } .header-left { display: flex; align-items: center; } .header-left .logo { height: 22px; width: 114px; } .logo-wrapper { display: flex; align-items: center; gap: 12px; } .logo { display: flex; align-items: center; gap: 12px; height: 22px; z-index: 10; } .logo a { display: flex; align-items: center; gap: 12px; height: 100%; text-decoration: none; } .logo img { height: 22px; width: 114px; } .logo-text { font-size: 16px; font-weight: 700; color: var(--text-dark); text-decoration: none; display: inline-block; transition: all 0.3s ease; } .logo-text:hover { color: var(--primary-blue); } .logo-text:visited { color: var(--text-dark); } .logo-link, .mobile-logo-link, .drawer-logo-link { display: inline-block; text-decoration: none; transition: transform 0.3s ease; } .logo-link:hover, .mobile-logo-link:hover, .drawer-logo-link:hover { transform: scale(1.05); } .logo-link img, .mobile-logo-link img, .drawer-logo-link img { display: block; } .header-right { display: flex; align-items: center; gap: 16px; } .search-btn { width: 40px; height: 40px; background: var(--gray-bg); border: none; border-radius: 50%; cursor: pointer; font-size: 16px; color: var(--text-gray); transition: all 0.3s ease; } .search-btn:hover { background: var(--light-bg); color: var(--primary-blue); transform: scale(1.1); } .desktop-header { display: flex; align-items: center; justify-content: space-between; width: 100%; } @media (max-width: 768px) { .desktop-header { display: none; } } .mobile-header { display: none; align-items: center; justify-content: space-between; width: 100%; } @media (max-width: 768px) { .mobile-header { display: flex; } } .mobile-left { display: flex; align-items: center; gap: clamp(8px, 2.13vw, 12px); } .mobile-left .mobile-logo-link { display: flex; align-items: center; } .mobile-left .mobile-logo { height: clamp(16px, 4.27vw, 24px); width: auto; object-fit: contain; } .mobile-left .mobile-logo-text { font-family: "Noto Sans KR", sans-serif; font-size: clamp(14px, 3.73vw, 18px); font-weight: 700; color: #212529; text-decoration: none; white-space: nowrap; } .mobile-left .mobile-logo-text:hover { color: #0049B4; } .mobile-center { display: none; } .mobile-center .mobile-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin: 0; } .mobile-right { display: flex; align-items: center; } .mobile-right .mobile-menu-btn { width: clamp(24px, 6.4vw, 32px); height: clamp(24px, 6.4vw, 32px); background: transparent; border: none; cursor: pointer; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: clamp(3px, 0.8vw, 5px); padding: clamp(4px, 1.07vw, 6px); border-radius: 4px; transition: background-color 0.3s ease; } .mobile-right .mobile-menu-btn:hover { background: rgba(0, 0, 0, 0.05); } .mobile-right .mobile-menu-btn .hamburger-line { width: clamp(16px, 4.27vw, 22px); height: 2px; background: #515961; transition: all 0.3s ease; border-radius: 1px; } .mobile-right .mobile-menu-btn.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translateY(5px); } .mobile-right .mobile-menu-btn.active .hamburger-line:nth-child(2) { opacity: 0; } .mobile-right .mobile-menu-btn.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translateY(-5px); } .mobile-drawer { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999; visibility: hidden; opacity: 0; transition: all 0.3s ease; } .mobile-drawer.active { visibility: visible; opacity: 1; } .mobile-drawer.active .drawer-content { transform: translateY(0); } .mobile-drawer .drawer-overlay { display: none; } .mobile-drawer .drawer-content { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; background: #ffffff; transform: translateY(100%); transition: transform 0.3s ease; display: flex; flex-direction: column; overflow-y: auto; } .mobile-drawer .drawer-header { display: flex; align-items: center; justify-content: space-between; height: 44px; min-height: 44px; padding: 0 16px 0 20px; background: #ffffff; } .mobile-drawer .drawer-header .drawer-header-left { display: flex; align-items: center; gap: 8px; } .mobile-drawer .drawer-header .drawer-header-left .drawer-logo-link { display: flex; align-items: center; } .mobile-drawer .drawer-header .drawer-header-left .drawer-logo { height: 16px; width: auto; } .mobile-drawer .drawer-header .drawer-header-left .drawer-logo-text { font-family: "Noto Sans KR", sans-serif; font-size: 14px; font-weight: 500; color: #212529; } .mobile-drawer .drawer-header .drawer-header-right { display: flex; align-items: center; gap: 8px; } .mobile-drawer .drawer-header .drawer-home-btn { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; } .mobile-drawer .drawer-header .drawer-home-btn svg { width: 24px; height: 24px; } .mobile-drawer .drawer-header .drawer-home-btn:hover { opacity: 0.7; } .mobile-drawer .drawer-header .drawer-close { width: 24px; height: 24px; background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; } .mobile-drawer .drawer-header .drawer-close svg { width: 24px; height: 24px; } .mobile-drawer .drawer-header .drawer-close:hover { opacity: 0.7; } .mobile-drawer .drawer-welcome { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 214px; padding: 40px 20px; background: #ebfbff; border-bottom: 1px solid #dadada; } .mobile-drawer .drawer-welcome .welcome-user-icon { margin-bottom: 12px; } .mobile-drawer .drawer-welcome .welcome-user-icon img { width: 56px; height: 56px; } .mobile-drawer .drawer-welcome .welcome-login-prompt { font-family: "Noto Sans KR", sans-serif; font-size: 16px; font-weight: 700; color: #212529; line-height: 26px; margin: 0 0 8px 0; text-align: center; } .mobile-drawer .drawer-welcome .welcome-text { font-family: "Noto Sans KR", sans-serif; font-size: 14px; font-weight: 400; color: #212529; line-height: 26px; margin: 0 0 24px 0; text-align: center; } .mobile-drawer .drawer-welcome .welcome-buttons { display: flex; gap: 21px; width: 100%; max-width: 309px; } .mobile-drawer .drawer-welcome .btn-drawer-signup { flex: 1; display: flex; align-items: center; justify-content: center; height: 40px; background: #e5e7eb; color: #5f666c; font-family: "Noto Sans KR", sans-serif; font-size: 14px; font-weight: 700; border-radius: 8px; text-decoration: none; transition: all 0.3s ease; } .mobile-drawer .drawer-welcome .btn-drawer-signup:hover { background: #d1d5db; } .mobile-drawer .drawer-welcome .btn-drawer-login { flex: 1; display: flex; align-items: center; justify-content: center; height: 40px; background: #0049b4; color: #ffffff; font-family: "Noto Sans KR", sans-serif; font-size: 14px; font-weight: 700; border-radius: 8px; text-decoration: none; transition: all 0.3s ease; } .mobile-drawer .drawer-welcome .btn-drawer-login:hover { background: rgb(0, 52.3166666667, 129); } .mobile-drawer .drawer-welcome.authenticated { flex-direction: row; min-height: 138px; padding: 40px 54px; gap: 16px; justify-content: flex-start; } .mobile-drawer .drawer-welcome.authenticated .welcome-user-icon { margin-bottom: 0; flex-shrink: 0; } .mobile-drawer .drawer-welcome.authenticated .welcome-user-info { display: flex; flex-direction: column; gap: 8px; } .mobile-drawer .drawer-welcome.authenticated .welcome-user-name { font-family: "Noto Sans KR", sans-serif; font-size: 16px; font-weight: 700; color: #212529; line-height: 22px; margin: 0; } .mobile-drawer .drawer-welcome.authenticated .welcome-text { margin: 0; text-align: left; } .mobile-drawer .drawer-footer { display: flex; justify-content: flex-end; padding: 20px; background: #ffffff; border-top: 1px solid #dadada; } .mobile-drawer .drawer-footer .drawer-logout-btn { display: flex; align-items: center; gap: 4px; padding: 10px; background: transparent; border: none; cursor: pointer; text-decoration: none; } .mobile-drawer .drawer-footer .drawer-logout-btn svg { width: 16px; height: 16px; } .mobile-drawer .drawer-footer .drawer-logout-btn span { font-family: "Noto Sans KR", sans-serif; font-size: 14px; font-weight: 500; color: #0049b4; line-height: 18px; } .mobile-drawer .drawer-footer .drawer-logout-btn:hover { opacity: 0.8; } .mobile-drawer .drawer-nav { flex: 1; padding: 0 20px; background: #ffffff; } .mobile-drawer .drawer-nav .drawer-menu-list { list-style: none; margin: 0; padding: 0; } .mobile-drawer .drawer-nav .drawer-menu-item { border-bottom: 1px solid #dadada; } .mobile-drawer .drawer-nav .drawer-menu-item .drawer-menu-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; height: 56px; padding: 0 8px; background: transparent; border: none; cursor: pointer; font-family: "Noto Sans KR", sans-serif; font-size: 16px; font-weight: 500; color: #212529; text-align: left; } .mobile-drawer .drawer-nav .drawer-menu-item .drawer-menu-btn .accordion-icon { transition: transform 0.3s ease; } .mobile-drawer .drawer-nav .drawer-menu-item .drawer-submenu { display: none; list-style: none; margin: 0; padding: 12px 0; background: #fafafa; } .mobile-drawer .drawer-nav .drawer-menu-item .drawer-submenu li a { display: block; padding: 8px 16px 8px 57px; font-family: "Noto Sans KR", sans-serif; font-size: 14px; font-weight: 500; color: #212529; text-decoration: none; line-height: 28px; transition: color 0.3s ease; } .mobile-drawer .drawer-nav .drawer-menu-item .drawer-submenu li a:hover { color: #0049b4; } .mobile-drawer .drawer-nav .drawer-menu-item .drawer-submenu li:not(:first-child) a { font-weight: 400; color: #515151; } .mobile-drawer .drawer-nav .drawer-menu-item.open .drawer-menu-btn { font-weight: 700; } .mobile-drawer .drawer-nav .drawer-menu-item.open .drawer-menu-btn .accordion-icon { transform: rotate(180deg); } .mobile-drawer .drawer-nav .drawer-menu-item.open .drawer-submenu { display: block; } .btn-mobilemenu { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: transparent; border: none; cursor: pointer; padding: 8px; z-index: 501; } .btn-mobilemenu span { display: block; width: 24px; height: 2px; background: #1A1A2E; position: relative; transition: all all 0.15s ease; text-indent: -9999px; } .btn-mobilemenu span::before, .btn-mobilemenu span::after { content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: #1A1A2E; transition: all all 0.15s ease; } .btn-mobilemenu span::before { top: -8px; } .btn-mobilemenu span::after { top: 8px; } .btn-mobilemenu.on span { background: transparent; } .btn-mobilemenu.on span::before { top: 0; transform: rotate(45deg); } .btn-mobilemenu.on span::after { top: 0; transform: rotate(-45deg); } .main-nav.m-nav { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #FFFFFF; z-index: 500; right: -100%; transition: none; overflow-y: auto; display: flex; flex-direction: column; } .main-nav.m-nav .nav-header { padding: 24px; background: #F8FAFC; border-bottom: 1px solid #E2E8F0; } .main-nav.m-nav .nav-list { list-style: none; margin: 0; padding: 0; flex-grow: 1; } .main-nav.m-nav .nav-list .nav-item { border-bottom: 1px solid #E2E8F0; } .main-nav.m-nav .nav-list .nav-item > a { display: flex; align-items: center; padding: 24px; color: #1A1A2E; font-size: 18px; font-weight: 500; text-decoration: none; position: relative; } .main-nav.m-nav .nav-list .nav-item.has-submenu > a::after { content: ""; position: absolute; right: 24px; top: 50%; width: 8px; height: 8px; border-right: 2px solid #64748B; border-bottom: 2px solid #64748B; transform: translateY(-50%) rotate(45deg); transition: transform all 0.15s ease; } .main-nav.m-nav .nav-list .nav-item.expanded > a::after { transform: translateY(-25%) rotate(-135deg); } .main-nav.m-nav .nav-list .nav-item .sub-menu { display: none; list-style: none; padding: 0; margin: 0; background: #F8FAFC; } .main-nav.m-nav .nav-list .nav-item .sub-menu a { display: block; padding: 16px 24px 16px 48px; color: #64748B; font-size: 14px; text-decoration: none; } .main-nav.m-nav .nav-list .nav-item .sub-menu a:hover { background: #FFFFFF; color: #0049b4; } .main-nav.m-nav .nav-list .nav-item.expanded .sub-menu { display: block; } .main-nav.m-nav .info_wrap { padding: 32px 24px; background: #FFFFFF; border-top: 1px solid #E2E8F0; margin-top: auto; } .nav-menu { display: flex; list-style: none; gap: 8px; margin: 0; padding: 0; } .nav-menu > li { position: relative; } .nav-menu > li.submenu-open > .nav-link { background: var(--light-bg); color: var(--primary-blue); } .nav-menu > li.submenu-open .sub-menu { visibility: visible; opacity: 1; transform: translateY(0); } .nav-menu > li .sub-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 200px; background: var(--white); border: 1px solid var(--border-gray); border-radius: 12px; box-shadow: var(--shadow-xl); padding: 8px 0; visibility: hidden; opacity: 0; transform: translateY(-10px); transition: all 0.3s ease; z-index: 100; list-style: none; margin: 0; } .nav-menu > li .sub-menu li { margin: 0; } .nav-menu > li .sub-menu li a { display: block; padding: 8px 24px; color: var(--text-dark); text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.3s ease; } .nav-menu > li .sub-menu li a:hover { background: var(--light-bg); color: var(--primary-blue); } .nav-link { display: flex; align-items: center; gap: 6px; text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 15px; padding: 8px 16px; border-radius: 8px; transition: all 0.3s ease; } .nav-link:hover { color: var(--primary-blue); } .nav-icon { font-size: 18px; } .signup-btn { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--white); padding: 12px 24px; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; box-shadow: var(--shadow-md); } .signup-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); } body { padding-top: 112px; } @media (max-width: 768px) { .global-header { height: clamp(44px, 11.73vw, 60px); background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: none; } .global-header .container { padding: 0; max-width: 100%; background-color: #FEFEFE; } .global-header .container .header-content { padding: 0 clamp(16px, 4.27vw, 24px) 0 clamp(20px, 5.33vw, 28px); height: clamp(44px, 11.73vw, 60px); margin-top: 0; } body { padding-top: clamp(44px, 11.73vw, 60px); } } .header-user-info { display: flex; align-items: center; gap: 6px; padding: 4px 6px; border-radius: 6px; } .header-user-info .user-identity { display: flex; align-items: center; gap: 2px; } .header-user-info .user-identity .user-icon { width: 16px; height: 18px; display: block; } .header-user-info .user-identity .user-name { font-family: "Noto Sans CJK KR", sans-serif; font-size: 16px; font-weight: 400; color: #515961; white-space: nowrap; } .header-user-info .divider { font-size: 8px; color: var(--text-gray); line-height: 1; } .header-user-info .header-link { font-family: "Noto Sans CJK KR", sans-serif; font-size: 16px; font-weight: 400; color: #515961; text-decoration: none; white-space: nowrap; background: none; border: none; padding: 0; cursor: pointer; transition: color 0.3s ease; } .header-user-info .header-link:hover { color: var(--primary-blue); } .header-user-info .mypage-dropdown { position: relative; } .header-user-info .mypage-dropdown .mypage-toggle { display: flex; align-items: center; gap: 4px; } .header-user-info .mypage-dropdown .mypage-dropdown-menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 200px; background: var(--white); border: 1px solid var(--border-gray); border-radius: 12px; box-shadow: var(--shadow-xl); padding: 8px 0; visibility: hidden; opacity: 0; transform: translateY(-10px); transition: all 0.3s ease; z-index: 100; } .header-user-info .mypage-dropdown .mypage-dropdown-menu .mypage-menu-list { list-style: none; margin: 0; padding: 0; } .header-user-info .mypage-dropdown .mypage-dropdown-menu .mypage-menu-list li { margin: 0; } .header-user-info .mypage-dropdown .mypage-dropdown-menu .mypage-menu-list li a { display: flex; align-items: center; gap: 8px; padding: 8px 24px; color: var(--text-dark); text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.3s ease; } .header-user-info .mypage-dropdown .mypage-dropdown-menu .mypage-menu-list li a i { font-size: 14px; width: 16px; text-align: center; } .header-user-info .mypage-dropdown .mypage-dropdown-menu .mypage-menu-list li a:hover { background: var(--light-bg); color: var(--primary-blue); } .header-user-info .mypage-dropdown.active .mypage-dropdown-menu { visibility: visible; opacity: 1; transform: translateY(0); } @media (max-width: 768px) { .header-user-info { display: none; } } .global-footer { background: #FFFFFF; border-top: 1px solid #E5E7EB; } .global-footer .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .footer-content { display: flex; justify-content: space-between; align-items: center; min-height: 200px; padding: 40px 0; gap: 40px; } @media (max-width: 1024px) { .footer-content { flex-direction: column; align-items: flex-start; gap: 32px; padding: 32px 0; } } .footer-left { display: flex; flex-direction: column; gap: 16px; } .footer-left .footer-logo { width: 114px; height: auto; object-fit: contain; } .footer-left .footer-links { display: flex; align-items: center; gap: 8px; } .footer-left .footer-links .footer-link { font-family: "Noto Sans KR", sans-serif; font-size: 16px; font-weight: 400; color: #5F666C; text-decoration: none; transition: color 0.3s ease; } .footer-left .footer-links .footer-link:hover { color: #0049B4; text-decoration: underline; } .footer-left .footer-links .footer-separator { color: #D1D5DB; font-size: 16px; user-select: none; } .footer-left .footer-copyright { font-family: "Noto Sans KR", sans-serif; font-size: 14px; font-weight: 400; color: #9CA3AF; margin: 0; line-height: 1.5; } .footer-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; } @media (max-width: 1024px) { .footer-right { align-items: flex-start; width: 100%; } } .footer-right .footer-related-sites .related-sites-select { width: 240px; height: 44px; padding: 0 16px; font-family: "Noto Sans KR", sans-serif; font-size: 16px; font-weight: 400; color: #5F666C; background: #FFFFFF; border: 1px solid #D1D5DB; border-radius: 6px; cursor: pointer; transition: all 0.3s ease; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235F666C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; } .footer-right .footer-related-sites .related-sites-select:hover { border-color: #0049B4; } .footer-right .footer-related-sites .related-sites-select:focus { outline: none; border-color: #0049B4; box-shadow: 0 0 0 3px rgba(0, 73, 180, 0.1); } @media (max-width: 1024px) { .footer-right .footer-related-sites .related-sites-select { width: 100%; } } .footer-right .footer-contact { font-family: "Noto Sans KR", sans-serif; font-size: 30px; font-weight: 700; color: #1F2937; margin: 0; line-height: 1.2; } @media (max-width: 1024px) { .footer-right .footer-contact { font-size: 24px; } } @media (max-width: 768px) { .global-footer .container { padding: 0 20px; } .footer-content { flex-direction: column; align-items: flex-start; padding: 24px 0; gap: 12px; min-height: auto; } .footer-left { gap: 8px; width: 100%; order: 1; } .footer-left .footer-logo { width: 72px; order: -2; } .footer-left .footer-links { gap: 9px; order: 1; } .footer-left .footer-links .footer-link { font-size: 11px; color: #212529; } .footer-left .footer-links .footer-separator { font-size: 11px; color: #212529; } .footer-left .footer-copyright { font-size: 10px; color: #5f666c; order: 3; } .footer-right { width: 100%; align-items: flex-start; gap: 8px; order: 0; } .footer-right .footer-related-sites { width: 100%; order: -1; } .footer-right .footer-related-sites .related-sites-select { width: 100%; height: 44px; font-size: 12px; border-radius: 8px; border-color: #dadada; color: #8c959f; } .footer-right .footer-contact { font-size: 11px; font-weight: 400; color: #212529; order: 2; } } @media (max-width: 768px) { .footer-content { display: flex; flex-direction: column; } .footer-content .footer-left { display: contents; } .footer-content .footer-left .footer-logo { order: 1; } .footer-content .footer-left .footer-links { order: 3; } .footer-content .footer-left .footer-copyright { order: 5; } .footer-content .footer-right { display: contents; } .footer-content .footer-right .footer-related-sites { order: 2; width: 100%; } .footer-content .footer-right .footer-contact { order: 4; } } .grid { display: grid; gap: 24px; } .grid-cols-1 { grid-template-columns: 1fr; } .grid-cols-2 { grid-template-columns: repeat(2, 1fr); } .grid-cols-3 { grid-template-columns: repeat(3, 1fr); } .grid-cols-4 { grid-template-columns: repeat(4, 1fr); } .grid-cols-5 { grid-template-columns: repeat(5, 1fr); } .grid-cols-6 { grid-template-columns: repeat(6, 1fr); } .grid-cols-12 { grid-template-columns: repeat(12, 1fr); } .grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } .grid-auto-sm { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } .grid-auto-lg { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); } .grid.gap-0 { gap: 0; } .grid.gap-sm { gap: 8px; } .grid.gap-md { gap: 16px; } .grid.gap-lg { gap: 24px; } .grid.gap-xl { gap: 32px; } @media (max-width: 1024px) { .grid-md-cols-1 { grid-template-columns: 1fr; } .grid-md-cols-2 { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .grid-sm-cols-1 { grid-template-columns: 1fr; } .grid-sm-cols-2 { grid-template-columns: repeat(2, 1fr); } } .col-span-1 { grid-column: span 1; } .col-span-2 { grid-column: span 2; } .col-span-3 { grid-column: span 3; } .col-span-4 { grid-column: span 4; } .col-span-5 { grid-column: span 5; } .col-span-6 { grid-column: span 6; } .col-span-full { grid-column: 1/-1; } .row-span-1 { grid-row: span 1; } .row-span-2 { grid-row: span 2; } .row-span-3 { grid-row: span 3; } .api-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; } @media (max-width: 1024px) { .api-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .api-grid { grid-template-columns: 1fr; } } .experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; } @media (max-width: 768px) { .experience-grid { grid-template-columns: 1fr; } } .partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; align-items: center; } @media (max-width: 768px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } } .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; } @media (max-width: 768px) { .feature-grid { grid-template-columns: 1fr; } } .demo-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; } @media (max-width: 1024px) { .demo-wrapper { grid-template-columns: 1fr; } } .footer-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 80px; } @media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } } .footer-grid .footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; } @media (max-width: 1024px) { .footer-grid .footer-links { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .footer-grid .footer-links { grid-template-columns: 1fr; text-align: center; } } .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: center; } @media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr; gap: 32px; } } .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 24px; } @media (max-width: 768px) { .testimonial-grid { grid-template-columns: 1fr; } } .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; } @media (max-width: 1024px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr; } } .two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; } @media (max-width: 1024px) { .two-column { grid-template-columns: 1fr; gap: 32px; } } .two-column.reverse { direction: rtl; } .two-column.reverse > * { direction: ltr; } @media (max-width: 1024px) { .two-column.reverse { direction: ltr; } } .three-column { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; } @media (max-width: 1024px) { .three-column { grid-template-columns: 1fr; } } .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; } @media (max-width: 768px) { .container { padding: 0 16px; } } .container-fluid { max-width: 100%; padding: 0 24px; } .container-narrow { max-width: 960px; } .container-wide { max-width: 1440px; } .section { padding: 100px 0; } @media (max-width: 768px) { .section { padding: 64px 0; } } .section-sm { padding: 48px 0; } .section-lg { padding: 150px 0; } .section-no-top { padding-top: 0; } .section-no-bottom { padding-bottom: 0; } .section-bg-gray { background: #F8FAFC; } .section-bg-light { background: #EFF6FF; } .section-bg-primary { color: #FFFFFF; } .section-bg-dark { background: #1A1A2E; color: #FFFFFF; } .section-header { text-align: center; margin-bottom: 64px; } @media (max-width: 768px) { .section-header { margin-bottom: 48px; } } .section-header .section-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 16px; background: #EFF6FF; color: #0049b4; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 16px; } .section-header .section-title { font-size: 40px; font-weight: 700; margin-bottom: 16px; color: #1A1A2E; } @media (max-width: 768px) { .section-header .section-title { font-size: 32px; } } .section-header .section-subtitle { font-size: 18px; color: #64748B; line-height: 1.6; max-width: 600px; margin: 0 auto; } @media (max-width: 768px) { .section-header .section-subtitle { font-size: 16px; } } .content-wrapper { position: relative; min-height: 100vh; display: flex; flex-direction: column; } .content-wrapper .main-content { flex: 1; padding-top: 80px; } .page-wrapper { position: relative; overflow: hidden; } .inner-content { position: relative; z-index: 1; } .btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; border-radius: 12px; font-weight: 600; font-size: 16px; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; } .btn:hover { transform: translateY(-3px); } .btn { position: relative; overflow: hidden; } .btn-sm { padding: 8px 16px; font-size: 14px; } .btn-md { padding: 16px 24px; font-size: 16px; } .btn-lg { padding: 16px 32px; font-size: 18px; } .btn-xl { padding: 24px 40px; font-size: 20px; } .btn-primary { background: #0049b4; color: #FFFFFF; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2); } .btn-primary:active { transform: translateY(-1px); } .btn-secondary { background: #E5E7EB; color: #5F666C; } .btn-secondary:hover { background: #EFF6FF; transform: translateY(-3px); } .btn-accent { color: #FFFFFF; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .btn-accent:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2); } .btn-warm { color: #FFFFFF; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .btn-warm:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2); } .btn-success { background: #6BCF7F; color: #FFFFFF; } .btn-success:hover { background: rgb(68.4897959184, 194.5102040816, 93.693877551); transform: translateY(-3px); } .btn-danger { background: #FF6B6B; color: #FFFFFF; } .btn-danger:hover { background: #ff3838; transform: translateY(-3px); } .btn-ghost { background: transparent; color: #0049b4; border: 2px solid transparent; } .btn-ghost:hover { background: rgba(0, 73, 180, 0.1); border-color: #0049b4; } .btn-outline { background: transparent; color: #1A1A2E; border: 2px solid #E2E8F0; } .btn-outline:hover { border-color: #0049b4; color: #0049b4; transform: translateY(-3px); } .btn:disabled, .btn.disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; } .btn.loading { color: transparent; pointer-events: none; } .btn.loading::after { content: ""; position: absolute; width: 16px; height: 16px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 2px solid #FFFFFF; border-radius: 50%; border-top-color: transparent; animation: spin 0.6s linear infinite; } .btn-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; border-radius: 50%; } .btn-icon.btn-sm { width: 32px; height: 32px; } .btn-icon.btn-lg { width: 56px; height: 56px; } .btn-block { width: 100%; justify-content: center; } .btn-group { display: inline-flex; gap: -1px; } .btn-group .btn { border-radius: 0; } .btn-group .btn:first-child { border-top-left-radius: 12px; border-bottom-left-radius: 12px; } .btn-group .btn:last-child { border-top-right-radius: 12px; border-bottom-right-radius: 12px; } .fab { position: fixed; bottom: 32px; right: 32px; width: 60px; height: 60px; border: none; border-radius: 50%; color: #FFFFFF; font-size: 24px; cursor: pointer; box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); transition: all 0.3s ease; z-index: 300; display: flex; justify-content: center; align-items: center; } .fab:hover { transform: scale(1.1); box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2); } .fab:hover .fab-label { opacity: 1; transform: translateX(-10px); } .fab .fab-label { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); background: #1A1A2E; color: #FFFFFF; padding: 8px 16px; border-radius: 8px; font-size: 14px; white-space: nowrap; opacity: 0; transition: all 0.3s ease; pointer-events: none; } .btn-cta-primary { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; border-radius: 12px; font-weight: 600; font-size: 16px; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; } .btn-cta-primary:hover { transform: translateY(-3px); } .btn-cta-primary { background: #FFFFFF; color: #0049b4; padding: 16px 40px; font-size: 18px; box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); } .btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2); } .btn-cta-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; border-radius: 12px; font-weight: 600; font-size: 16px; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; } .btn-cta-secondary:hover { transform: translateY(-3px); } .btn-cta-secondary { background: transparent; color: #FFFFFF; border: 2px solid #FFFFFF; padding: 16px 40px; font-size: 18px; } .btn-cta-secondary:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); } .action-btn, .action-btn-new, .action-btn-primary, .action-btn-secondary, .action-btn-edit, .action-btn-delete { padding: 16px 40px; border-radius: 8px; font-size: 16px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; border: none; } @media (max-width: 768px) { .action-btn, .action-btn-new, .action-btn-primary, .action-btn-secondary, .action-btn-edit, .action-btn-delete { padding: 16px 24px; font-size: 14px; } } .action-btn i, .action-btn-new i, .action-btn-primary i, .action-btn-secondary i, .action-btn-edit i, .action-btn-delete i { font-size: 16px; } .action-btn-new, .action-btn-primary { color: #FFFFFF; } .action-btn-new:hover, .action-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .action-btn-new:active, .action-btn-primary:active { transform: translateY(0); } .action-btn-secondary { background: #FFFFFF; color: #1A1A2E; border: 1px solid #E2E8F0; } .action-btn-secondary:hover { background: #F8FAFC; border-color: #0049b4; color: #0049b4; } .action-btn-secondary:active { transform: scale(0.98); } .action-btn-edit { background: #0049b4; color: #FFFFFF; } .action-btn-edit:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); background: #c3dfea; } .action-btn-edit:active { transform: translateY(0); } .action-btn-delete { background: #FF6B6B; color: #FFFFFF; } .action-btn-delete:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); background: rgb(255, 81.5, 81.5); } .action-btn-delete:active { transform: translateY(0); } .action-btn.btn-list { background: #FFFFFF; color: #1A1A2E; border: 1px solid #E2E8F0; } .action-btn.btn-list:hover { background: #F8FAFC; border-color: #0049b4; color: #0049b4; } .action-btn.btn-edit { color: #FFFFFF; } .action-btn.btn-edit:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .action-btn.btn-delete { background: #FF6B6B; color: #FFFFFF; } .action-btn.btn-delete:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .btn-copy { padding: 8px 16px; background: rgba(0, 73, 180, 0.1); color: #0049b4; border: 1px solid rgba(0, 73, 180, 0.2); border-radius: 6px; font-size: 12px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 4px; } .btn-copy:hover { background: rgba(0, 73, 180, 0.2); border-color: #0049b4; } .btn-copy i { font-size: 12px; } .btn-action { padding: 8px 24px; color: #FFFFFF; border: none; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 4px; } .btn-action:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .btn-action i { font-size: 14px; } .btn-cancel { padding: 8px 24px; background: #FFFFFF; color: #64748B; border: 1px solid #E2E8F0; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 4px; } .btn-cancel:hover { border-color: #0049b4; color: #0049b4; } .btn-cancel i { font-size: 14px; } .btn-input-action { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; min-width: 172px; height: 60px; padding: 10px 24px; border: none; border-radius: 12px; font-size: 20px; font-weight: 700; color: #FFFFFF; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; } .btn-input-action.btn-change { background: #a4d6ea; } .btn-input-action.btn-change:hover { background: rgb(122.5625, 195.3303571429, 224.4375); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .btn-input-action.btn-change:active { transform: translateY(0); } .btn-input-action.btn-auth { background: #A4D6EA; } .btn-input-action.btn-auth:hover { background: #c3dfea; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .btn-input-action.btn-auth:active { transform: translateY(0); } .btn-input-action.btn-auth:disabled { background: #E2E8F0; cursor: not-allowed; transform: none; box-shadow: none; } @media (max-width: 768px) { .btn-input-action { width: 100%; min-width: auto; height: 52px; font-size: 16px; } } .btn-upload { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 60px; padding: 10px 24px; background-color: #3ba4ed; color: #FFFFFF; border: none; border-radius: 12px; font-size: 18px; font-weight: 700; cursor: pointer; transition: background-color 0.2s ease; } .btn-upload:hover { background-color: #2b94dd; } @media (max-width: 1024px) { .btn-upload { font-size: 16px; height: 50px; } } .status-badge { display: inline-flex; align-items: center; justify-content: center; padding: 4px 16px; border-radius: 50px; font-size: 12px; font-weight: 600; white-space: nowrap; transition: all 0.3s ease; } .status-badge.status-pending { background: rgba(255, 107, 107, 0.1); color: #FF6B6B; } .status-badge.status-completed { background: rgba(107, 207, 127, 0.1); color: #6BCF7F; } .status-badge.status-active { background: rgba(0, 73, 180, 0.1); color: #0049b4; } .status-badge.status-inactive { background: rgba(100, 116, 139, 0.1); color: #64748B; } .status-badge.status-processing { background: rgba(255, 217, 61, 0.1); color: rgb(163, 131.0721649485, 0); } .status-badge.status-failed { background: rgba(255, 107, 107, 0.1); color: #FF6B6B; } .status-badge.status-success { background: rgba(107, 207, 127, 0.1); color: #6BCF7F; } .status-badge-header { display: inline-flex; align-items: center; justify-content: center; padding: 4px 16px; border-radius: 50px; font-size: 12px; font-weight: 600; margin-bottom: 16px; transition: all 0.3s ease; } .status-badge-header.status-pending { background: rgba(255, 107, 107, 0.1); color: #FF6B6B; } .status-badge-header.status-completed { background: rgba(107, 207, 127, 0.1); color: #6BCF7F; } .status-badge-header.status-active { background: rgba(0, 73, 180, 0.1); color: #0049b4; } .status-badge-header.status-inactive { background: rgba(100, 116, 139, 0.1); color: #64748B; } .status-badge-header.status-processing { background: rgba(255, 217, 61, 0.1); color: rgb(163, 131.0721649485, 0); } .badge-sm { padding: 2px 8px; font-size: 10px; border-radius: 6px; } .badge-lg { padding: 8px 24px; font-size: 14px; border-radius: 8px; } .badge-outline { background: transparent; border: 1px solid currentColor; } .badge-outline.status-pending { color: #FF6B6B; border-color: #FF6B6B; } .badge-outline.status-completed { color: #6BCF7F; border-color: #6BCF7F; } .badge-outline.status-active { color: #0049b4; border-color: #0049b4; } .badge-outline.status-inactive { color: #64748B; border-color: #64748B; } .badge-icon i { margin-right: 4px; font-size: 0.9em; } .notification-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 4px; background: #FF6B6B; color: #FFFFFF; border-radius: 50%; font-size: 11px; font-weight: 700; line-height: 1; } .notification-badge.badge-primary { background: #0049b4; } .notification-badge.badge-success { background: #6BCF7F; } .notification-badge.badge-warning { background: #FFD93D; color: #1A1A2E; } .notification-badge.badge-danger { background: #FF6B6B; } .card { background: #FFFFFF; border-radius: 20px; padding: 32px; transition: all 0.3s ease; } .card:hover { box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); } .card { position: relative; overflow: hidden; } .api-card { background: #FFFFFF; border-radius: 20px; padding: 32px; transition: all 0.3s ease; } .api-card:hover { box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); } .api-card { text-align: center; border: 2px solid #E2E8F0; } .api-card:hover { border-color: #0049b4; } .api-card-popular { border-color: #FFD93D; } .api-card-new { border-color: #6BCF7F; } .api-card .api-badge { position: absolute; top: -12px; right: 20px; padding: 4px 16px; background: #FFD93D; color: #1A1A2E; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; } .api-card .api-badge.new { background: #6BCF7F; color: #FFFFFF; } .api-card .api-badge.beta { background: #A78BFA; color: #FFFFFF; } .api-card .api-icon { width: 60px; height: 60px; margin: 0 auto 24px; display: flex; justify-content: center; align-items: center; font-size: 28px; background: #EFF6FF; color: #0049b4; border-radius: 16px; transition: all 0.3s ease; } .api-card:hover .api-icon { transform: scale(1.1); color: #FFFFFF; } .api-card .api-name { font-size: 20px; font-weight: 700; margin-bottom: 16px; color: #1A1A2E; } .api-card .api-description { color: #64748B; line-height: 1.6; margin-bottom: 24px; font-size: 14px; } .api-card .api-features { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; } .api-card .api-features .feature-tag { padding: 4px 8px; background: #F8FAFC; color: #64748B; border-radius: 20px; font-size: 12px; font-weight: 500; } .api-card .api-link { display: inline-flex; align-items: center; gap: 4px; color: #0049b4; font-weight: 600; font-size: 14px; transition: all 0.3s ease; } .api-card .api-link:hover { gap: 8px; color: #c3dfea; } .experience-card { background: #FFFFFF; border-radius: 20px; padding: 32px; transition: all 0.3s ease; } .experience-card:hover { box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); } .experience-card { text-align: center; } .experience-card .card-icon { width: 56px; height: 56px; margin: 0 auto 24px; display: flex; justify-content: center; align-items: center; font-size: 24px; color: #FFFFFF; border-radius: 16px; } .experience-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; color: #1A1A2E; } .experience-card p { color: #64748B; line-height: 1.6; margin-bottom: 24px; font-size: 14px; } .experience-card .card-metric { display: flex; flex-direction: column; align-items: center; padding-top: 24px; border-top: 1px solid #E2E8F0; } .experience-card .card-metric .metric-value { font-size: 24px; font-weight: 800; color: #0049b4; } .experience-card .card-metric .metric-label { font-size: 12px; color: #64748B; font-weight: 500; } .feature-card { background: #FFFFFF; border-radius: 20px; padding: 32px; transition: all 0.3s ease; } .feature-card:hover { box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); } .feature-card { display: flex; align-items: flex-start; gap: 24px; } .feature-card .feature-icon { flex-shrink: 0; width: 48px; height: 48px; display: flex; justify-content: center; align-items: center; color: #FFFFFF; border-radius: 12px; font-size: 24px; } .feature-card .feature-content { flex: 1; } .feature-card .feature-content h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: #1A1A2E; } .feature-card .feature-content p { color: #64748B; line-height: 1.6; font-size: 14px; } .testimonial-card { background: #FFFFFF; border-radius: 20px; padding: 32px; transition: all 0.3s ease; } .testimonial-card:hover { box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); } .testimonial-card { position: relative; } .testimonial-card::before { content: '"'; position: absolute; top: 16px; left: 16px; font-size: 60px; color: #0049b4; opacity: 0.1; font-weight: 700; } .testimonial-card .testimonial-content { position: relative; z-index: 1; font-size: 16px; line-height: 1.8; color: #1A1A2E; margin-bottom: 24px; font-style: italic; } .testimonial-card .testimonial-author { display: flex; align-items: center; gap: 16px; } .testimonial-card .testimonial-author .author-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; } .testimonial-card .testimonial-author .author-info .author-name { font-weight: 600; color: #1A1A2E; margin-bottom: 2px; } .testimonial-card .testimonial-author .author-info .author-title { font-size: 14px; color: #64748B; } .pricing-card { background: #FFFFFF; border-radius: 20px; padding: 32px; transition: all 0.3s ease; } .pricing-card:hover { box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); } .pricing-card { text-align: center; position: relative; } .pricing-card.featured { border: 2px solid #0049b4; transform: scale(1.05); } .pricing-card.featured .pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 4px 16px; color: #FFFFFF; border-radius: 50px; font-size: 12px; font-weight: 700; text-transform: uppercase; } .pricing-card .pricing-header { padding-bottom: 24px; border-bottom: 1px solid #E2E8F0; margin-bottom: 24px; } .pricing-card .pricing-header h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; color: #1A1A2E; } .pricing-card .pricing-header .price { display: flex; align-items: baseline; justify-content: center; gap: 4px; } .pricing-card .pricing-header .price .currency { font-size: 20px; color: #64748B; } .pricing-card .pricing-header .price .amount { font-size: 48px; font-weight: 800; } .pricing-card .pricing-header .price .period { font-size: 16px; color: #64748B; } .pricing-card .pricing-features { list-style: none; margin-bottom: 24px; } .pricing-card .pricing-features li { padding: 8px 0; color: #64748B; font-size: 14px; display: flex; align-items: center; gap: 8px; } .pricing-card .pricing-features li::before { content: "✓"; color: #6BCF7F; font-weight: 700; } .pricing-card .pricing-features li.disabled { opacity: 0.5; } .pricing-card .pricing-features li.disabled::before { content: "×"; color: #94A3B8; } .pricing-card .pricing-cta { margin-top: auto; } .common-container, .org-register-container, .app-management-container, .apikey-detail-container, .apikey-register-container { max-width: 1280px; margin: 0 auto; padding: 60px 24px 80px; } @media (max-width: 768px) { .common-container, .org-register-container, .app-management-container, .apikey-detail-container, .apikey-register-container { padding: 40px 16px 60px; } } .common-section-box, .app-list-container, .register-result, .register-form-container { background-color: #f6f9fb; border-radius: 12px; padding: 30px 45px; } @media (max-width: 768px) { .common-section-box, .app-list-container, .register-result, .register-form-container { padding: 24px; } } .common-title-bar, .user-management-container .table-controls, .app-list-title-section, .register-title-bar { background-color: #f6f9fb; border-radius: 12px; padding: 14px 45px; margin-bottom: 30px; } @media (max-width: 768px) { .common-title-bar, .user-management-container .table-controls, .app-list-title-section, .register-title-bar { padding: 12px 24px; } } .common-title-bar .common-title, .user-management-container .table-controls .common-title, .app-list-title-section .common-title, .register-title-bar .common-title { font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 28px; font-weight: 700; color: #1A1A2E; margin: 0; } @media (max-width: 768px) { .common-title-bar .common-title, .user-management-container .table-controls .common-title, .app-list-title-section .common-title, .register-title-bar .common-title { font-size: 22px; } } .common-title-bar--simple { background: none; padding: 0 0 16px 0; border-radius: 0; border-bottom: 2px solid #212529; margin-bottom: 32px; } .common-title-bar--simple h3 { font-size: 22px; font-weight: 700; color: #212529; margin: 0; } .common-title-bar--simple .required-badge { display: none; } .common-title-bar .common-subtitle, .user-management-container .table-controls .common-subtitle, .app-list-title-section .common-subtitle, .register-title-bar .common-subtitle { font-size: 16px; font-weight: 400; color: #515151; } @media (max-width: 768px) { .common-title-bar .common-subtitle, .user-management-container .table-controls .common-subtitle, .app-list-title-section .common-subtitle, .register-title-bar .common-subtitle { font-size: 14px; } } .apikey-status-badge, .app-status-badge, .status-badge { display: inline-flex; align-items: center; justify-content: center; padding: 5px 14px; border-radius: 40px; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 13px; font-weight: 700; color: #FFFFFF; white-space: nowrap; } .apikey-status-badge.status-pending, .status-pending.app-status-badge, .status-pending.status-badge { background-color: #8c959f; } .apikey-status-badge.status-approved, .status-approved.app-status-badge, .status-approved.status-badge, .apikey-status-badge.status-active, .status-active.app-status-badge, .status-active.status-badge { background-color: #0049b4; } .apikey-status-badge.status-changing, .status-changing.app-status-badge, .status-changing.status-badge { background-color: #88a5f3; } .apikey-status-badge.status-inactive, .status-inactive.app-status-badge, .status-inactive.status-badge, .apikey-status-badge.status-rejected, .status-rejected.app-status-badge, .status-rejected.status-badge { background-color: #dc3545; } .apikey-status-badge.status-light.status-pending, .status-light.status-pending.app-status-badge, .status-light.status-pending.status-badge { background-color: #FFF3CD; color: #856404; } .apikey-status-badge.status-light.status-approved, .status-light.status-approved.app-status-badge, .status-light.status-approved.status-badge, .apikey-status-badge.status-light.status-active, .status-light.status-active.app-status-badge, .status-light.status-active.status-badge { background-color: #D4EDDA; color: #155724; } .apikey-status-badge.status-light.status-rejected, .status-light.status-rejected.app-status-badge, .status-light.status-rejected.status-badge, .apikey-status-badge.status-light.status-inactive, .status-light.status-inactive.app-status-badge, .status-light.status-inactive.status-badge { background-color: #F8D7DA; color: #721C24; } .apikey-status-indicator, .status-indicator { display: inline-flex; align-items: center; gap: 8px; padding: 4px 16px; border-radius: 16px; font-size: 14px; font-weight: 600; } .apikey-status-indicator .status-dot, .status-indicator .status-dot { width: 8px; height: 8px; border-radius: 50%; background-color: currentColor; } .apikey-status-indicator.status-active, .status-active.status-indicator { background-color: #D4EDDA; color: #155724; } .apikey-status-indicator.status-inactive, .status-inactive.status-indicator { background-color: #F8D7DA; color: #721C24; } .apikey-icon-display, .app-list-icon, .app-icon-display { width: 120px; height: 120px; } .apikey-icon-display.icon-sm, .icon-sm.app-list-icon, .icon-sm.app-icon-display { width: 70px; height: 70px; } @media (max-width: 768px) { .apikey-icon-display.icon-sm, .icon-sm.app-list-icon, .icon-sm.app-icon-display { width: 60px; height: 60px; } } .apikey-icon-display.icon-md, .icon-md.app-list-icon, .icon-md.app-icon-display { width: 100px; height: 100px; } .apikey-icon-image, .app-list-icon .app-icon-image, .app-icon-image { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; border: 2px solid #E2E8F0; } .apikey-icon-placeholder, .app-list-icon .app-icon-placeholder, .app-icon-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background-color: #e9ecef; border-radius: 12px; color: #868e96; font-size: 48px; } .apikey-icon-placeholder.placeholder-sm, .placeholder-sm.app-icon-placeholder { font-size: 24px; } .apikey-empty-state, .app-list-empty, .empty-state, .empty-api-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 24px; text-align: center; } .apikey-empty-state .empty-icon, .app-list-empty .empty-icon, .empty-state .empty-icon, .empty-api-state .empty-icon { font-size: 64px; margin-bottom: 24px; opacity: 0.5; } .apikey-empty-state h3, .app-list-empty h3, .empty-state h3, .empty-api-state h3 { font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 24px; font-weight: 700; color: #1A1A2E; margin: 0 0 16px; } .apikey-empty-state p, .app-list-empty p, .empty-state p, .empty-api-state p { font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 16px; color: #6e7780; margin: 0; } .apikey-action-btn, .btn-app-create, .btn-submit { display: inline-flex; align-items: center; justify-content: center; width: 220px; height: 60px; border: none; border-radius: 12px; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 18px; font-weight: 700; cursor: pointer; text-decoration: none; transition: background-color 0.2s ease, transform 0.2s ease; } .apikey-action-btn:hover, .btn-app-create:hover, .btn-submit:hover { transform: translateY(-2px); } .apikey-action-btn:active, .btn-app-create:active, .btn-submit:active { transform: translateY(0); } .apikey-action-btn.btn-primary, .btn-primary.btn-app-create, .btn-primary.btn-submit { background-color: #0049b4; color: #FFFFFF; } .apikey-action-btn.btn-primary:hover, .btn-primary.btn-app-create:hover, .btn-primary.btn-submit:hover { background-color: #003a91; } .apikey-action-btn.btn-secondary, .btn-secondary.btn-app-create, .btn-secondary.btn-submit { background-color: #e5e7eb; color: #5f666c; } .apikey-action-btn.btn-secondary:hover, .btn-secondary.btn-app-create:hover, .btn-secondary.btn-submit:hover { background-color: #d1d5db; } .apikey-action-btn.btn-accent, .btn-accent.btn-app-create, .btn-accent.btn-submit { background-color: #3ba4ed; color: #FFFFFF; } .apikey-action-btn.btn-accent:hover, .btn-accent.btn-app-create:hover, .btn-accent.btn-submit:hover { background-color: #2b94dd; } @media (max-width: 768px) { .apikey-action-btn, .btn-app-create, .btn-submit { width: 100%; max-width: 300px; height: 54px; font-size: 16px; } } .apikey-btn-copy, .btn-copy { display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 6px; font-size: 14px; color: #1A1A2E; cursor: pointer; transition: all 0.3s ease; } .apikey-btn-copy svg, .btn-copy svg { width: 16px; height: 16px; } .apikey-btn-copy:hover, .btn-copy:hover { background: #0049b4; border-color: #0049b4; color: #FFFFFF; } @media (max-width: 768px) { .apikey-btn-copy, .btn-copy { align-self: stretch; justify-content: center; } } .apikey-detail-section, .detail-section { background: #FFFFFF; border-radius: 12px; padding: 64px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } @media (max-width: 768px) { .apikey-detail-section, .detail-section { padding: 32px; } } .apikey-detail-section .section-title, .detail-section .section-title { font-size: 24px; font-weight: 700; color: #1A1A2E; margin-bottom: 24px; padding-bottom: 16px; } .apikey-detail-grid, .detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; } @media (max-width: 768px) { .apikey-detail-grid, .detail-grid { grid-template-columns: 1fr; } } .apikey-detail-item, .detail-item { display: flex; flex-direction: column; gap: 8px; } .apikey-detail-item.full-width, .full-width.detail-item { grid-column: 1/-1; } .apikey-detail-item .detail-label, .detail-item .detail-label { font-size: 14px; font-weight: 600; color: #64748B; } .apikey-detail-item .detail-value, .detail-item .detail-value { font-size: 16px; color: #1A1A2E; word-break: break-word; } .apikey-ip-list, .ip-list { display: flex; flex-wrap: wrap; gap: 8px; } .apikey-ip-tag, .ip-tag { display: inline-block; padding: 4px 16px; background-color: #EFF6FF; color: #c3dfea; border-radius: 6px; font-size: 14px; font-family: "Fira Code", "Courier New", monospace; } .apikey-credential-code, .credential-code { display: inline-block; padding: 8px 16px; background-color: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 6px; font-family: "Fira Code", "Courier New", monospace; font-size: 14px; color: #c3dfea; } .apikey-secret-box, .secret-box { display: flex; align-items: center; gap: 16px; } @media (max-width: 768px) { .apikey-secret-box, .secret-box { flex-direction: column; align-items: flex-start; } } .apikey-api-list, .api-detail-list { display: flex; flex-direction: column; gap: 8px; } .apikey-api-item, .api-list-item { display: flex; align-items: center; gap: 16px; padding: 16px 24px; background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 8px; transition: all 0.2s; } .apikey-api-item:hover, .api-list-item:hover { border-color: #0049b4; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); } @media (max-width: 768px) { .apikey-api-item, .api-list-item { padding: 16px; gap: 8px; } } .apikey-api-item .api-method, .api-list-item .api-method { display: inline-block; padding: 4px 16px; border-radius: 6px; font-size: 14px; font-weight: 700; font-family: "Fira Code", "Courier New", monospace; min-width: 80px; text-align: center; } .apikey-api-item .api-method.method-get, .api-list-item .api-method.method-get { background-color: #D1FAE5; color: #065F46; } .apikey-api-item .api-method.method-post, .api-list-item .api-method.method-post { background-color: #DBEAFE; color: #1E40AF; } .apikey-api-item .api-method.method-put, .api-list-item .api-method.method-put { background-color: #FEF3C7; color: #92400E; } .apikey-api-item .api-method.method-delete, .api-list-item .api-method.method-delete { background-color: #FEE2E2; color: #991B1B; } .apikey-api-item .api-method.method-other, .api-list-item .api-method.method-other { background-color: #E2E8F0; color: #1A1A2E; } .apikey-api-item .api-name, .api-list-item .api-name { flex: 1; font-size: 16px; font-weight: 500; color: #1A1A2E; margin: 0; } .apikey-api-item .api-status, .api-list-item .api-status { padding: 4px 16px; border-radius: 12px; font-size: 14px; font-weight: 600; } .apikey-api-item .api-status.status-pending, .api-list-item .api-status.status-pending { background-color: #FFF3CD; color: #856404; } .apikey-api-item .api-status.status-active, .api-list-item .api-status.status-active { background-color: #D4EDDA; color: #155724; } .apikey-form-actions, .detail-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 64px; padding-top: 64px; border-top: 1px solid #E2E8F0; } @media (max-width: 768px) { .apikey-form-actions, .detail-actions { flex-direction: column; align-items: stretch; } } @media (max-width: 768px) { .apikey-form-actions .btn, .detail-actions .btn { width: 100%; } } .form-group { margin-bottom: 24px; } .form-group label { display: block; font-size: 14px; font-weight: 500; color: #1A1A2E; margin-bottom: 8px; } .form-group label .required { color: #FF6B6B; margin-left: 2px; } .form-group .form-hint { font-size: 12px; color: #64748B; margin-top: 4px; } .form-group .form-error { font-size: 12px; color: #FF6B6B; margin-top: 4px; display: flex; align-items: center; gap: 4px; } .form-control { width: 100%; padding: 12px 16px; font-size: 16px; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; color: #1A1A2E; background: #FFFFFF; border: 2px solid #E2E8F0; border-radius: 8px; transition: all 0.3s ease; } .form-control::placeholder { color: #94A3B8; } .form-control:focus { outline: none; border-color: #0049b4; box-shadow: 0 0 0 3px rgba(0, 73, 180, 0.1); } .form-control:disabled { background: #F8FAFC; color: #64748B; cursor: not-allowed; } .form-control-sm { padding: 8px 16px; font-size: 14px; } .form-control-lg { padding: 16px 24px; font-size: 18px; } .form-control.is-valid { border-color: #6BCF7F; } .form-control.is-valid:focus { box-shadow: 0 0 0 3px rgba(107, 207, 127, 0.1); } .form-control.is-invalid { border-color: #FF6B6B; } .form-control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1); } textarea.form-control { min-height: 120px; resize: vertical; } select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%2364748B'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 12px; padding-right: 40px; } .form-check { display: flex; align-items: center; margin-bottom: 16px; } .form-check input[type=checkbox], .form-check input[type=radio] { width: 20px; height: 20px; margin-right: 8px; cursor: pointer; } .form-check label { margin-bottom: 0; cursor: pointer; user-select: none; } .form-check.disabled { opacity: 0.5; cursor: not-allowed; } .form-check.disabled input, .form-check.disabled label { cursor: not-allowed; } .form-switch { display: flex; align-items: center; gap: 16px; } .form-switch .switch { position: relative; width: 48px; height: 24px; background: #E2E8F0; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; } .form-switch .switch::after { content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; background: #FFFFFF; border-radius: 50%; transition: all 0.3s ease; } .form-switch .switch.active { background: #0049b4; } .form-switch .switch.active::after { transform: translateX(24px); } .input-group { display: flex; width: 100%; } .input-group .input-group-text { padding: 12px 16px; font-size: 16px; color: #64748B; background: #F8FAFC; border: 2px solid #E2E8F0; border-radius: 8px 0 0 8px; border-right: none; } .input-group .form-control { border-radius: 0 8px 8px 0; } .input-group.input-group-append .input-group-text { border-radius: 0 8px 8px 0; border-right: 2px solid #E2E8F0; border-left: none; } .input-group.input-group-append .form-control { border-radius: 8px 0 0 8px; } .form-inline { display: flex; align-items: flex-end; gap: 16px; } .form-inline .form-group { margin-bottom: 0; } @media (max-width: 768px) { .form-inline { flex-direction: column; align-items: stretch; } .form-inline .form-group { margin-bottom: 16px; } } .form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; } @media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } } .file-upload-wrapper { display: flex; gap: 16px; align-items: center; width: 100%; } @media (max-width: 768px) { .file-upload-wrapper { flex-direction: column; align-items: stretch; } } .file-upload-wrapper .file-name-display { flex: 1; padding: 16px; background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px; font-size: 14px; color: #64748B; cursor: default; transition: all 0.3s ease; } .file-upload-wrapper .file-name-display.has-file { color: #1A1A2E; background: rgba(0, 73, 180, 0.05); border-color: #0049b4; } .file-upload-wrapper .file-name-display:focus { outline: none; border-color: #0049b4; box-shadow: 0 0 0 3px rgba(0, 73, 180, 0.1); } .file-upload-wrapper .file-upload-btn { padding: 16px 24px; color: #FFFFFF; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; border: none; } @media (max-width: 768px) { .file-upload-wrapper .file-upload-btn { justify-content: center; } } .file-upload-wrapper .file-upload-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .file-upload-wrapper .file-upload-btn:active { transform: translateY(0); } .file-upload-wrapper .file-upload-btn i { font-size: 14px; } .file-upload-wrapper .file-remove-btn { padding: 16px; background: #FF6B6B; color: #FFFFFF; border-radius: 8px; border: none; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; } @media (max-width: 768px) { .file-upload-wrapper .file-remove-btn { width: 100%; height: auto; padding: 16px; } } .file-upload-wrapper .file-remove-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); background: rgb(255, 81.5, 81.5); } .file-upload-wrapper .file-remove-btn:active { transform: translateY(0); } .file-upload-wrapper .file-remove-btn i { font-size: 14px; } .file-upload-wrapper input[type=file] { display: none; } .form-help-text { margin-top: 16px; font-size: 12px; color: #94A3B8; line-height: 1.6; } .form-help-text p { margin: 4px 0; display: flex; align-items: flex-start; gap: 4px; } .form-help-text p i { color: #0049b4; margin-top: 2px; flex-shrink: 0; } .form-row { display: flex; align-items: flex-start; gap: 40px; margin-bottom: 50px; } @media (max-width: 1024px) { .form-row { flex-direction: column; gap: 12px; margin-bottom: 30px; } } .form-label-wrapper { display: flex; align-items: center; gap: 5px; min-width: 214px; width: 214px; flex-shrink: 0; } @media (max-width: 1024px) { .form-label-wrapper { padding-top: 0; width: auto; } } .form-label-wrapper.label-offset { margin-top: 15px; } @media (max-width: 1024px) { .form-label-wrapper.label-offset { margin-top: 0; } } .form-label-text { font-size: 20px; font-weight: 700; color: #000000; } @media (max-width: 1024px) { .form-label-text { font-size: 16px; } } .form-label-text.required::after { content: "*"; color: #FF6B6B; margin-left: 4px; } .required-badge { background-color: #3ba4ed; color: #FFFFFF; font-size: 11px; font-weight: 400; padding: 3px 4px 4px; border-radius: 4px; line-height: 1; } .form-field-wrapper { flex: 1; } @media (max-width: 768px) { .form-field-wrapper { width: 100%; } } .char-counter-wrapper { display: block; text-align: right; margin-top: 8px; } .char-counter-wrapper .char-counter { font-size: 14px; color: #94A3B8; } .section-divider { margin-top: 48px; padding-top: 32px; border-top: 1px solid #E2E8F0; } .compound-input { display: flex; align-items: center; gap: 8px; width: 100%; } .compound-input .form-input, .compound-input .form-select { flex: 1; min-width: 0; } .compound-input .separator { color: #64748B; font-weight: 600; user-select: none; flex-shrink: 0; } .compound-input .phone-number { flex: 1; width: 100%; } .compound-input .biz-reg-number { flex: 1; width: 100%; } @media (max-width: 768px) { .compound-input { gap: 4px; } .compound-input .separator { font-size: 14px; } } .input-with-button { display: flex; align-items: center; gap: 16px; } .input-with-button .compound-input, .input-with-button .auth-input-group { flex: 1; } @media (max-width: 768px) { .input-with-button { flex-direction: column; gap: 8px; } .input-with-button .compound-input, .input-with-button .auth-input-group { width: 100%; } } .auth-input-group { display: flex; align-items: center; position: relative; } .auth-input-group .form-input { flex: 1; padding-right: 100px; } .auth-input-group .auth-timer { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 14px; font-weight: 600; color: #FF6B6B; white-space: nowrap; } .form-actions, .form-actions-center { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; padding-top: 40px; } @media (max-width: 768px) { .form-actions, .form-actions-center { flex-direction: column-reverse; align-items: stretch; gap: 8px; margin-top: 48px; padding-top: 32px; } } .form-actions .btn, .form-actions-center .btn, .form-actions .action-btn-primary, .form-actions-center .action-btn-primary, .form-actions .action-btn-secondary, .form-actions-center .action-btn-secondary { min-width: 160px; padding: 16px 40px; } @media (max-width: 768px) { .form-actions .btn, .form-actions-center .btn, .form-actions .action-btn-primary, .form-actions-center .action-btn-primary, .form-actions .action-btn-secondary, .form-actions-center .action-btn-secondary { width: 100%; min-width: auto; } } .form-actions--between { justify-content: space-between; } .form-actions--no-border { border-top: none; padding-top: 0; } .form-actions--compact { margin-top: 40px; padding-top: 24px; } .form-actions--with-withdrawal { position: relative; justify-content: center; } .form-actions--with-withdrawal .withdrawal-link { position: absolute; left: 0; display: inline-flex; align-items: center; justify-content: center; gap: 3px; width: 150px; padding: 8px; background: #E5F2F8; border-radius: 12px; color: #5F666C; font-size: 16px; font-weight: 400; text-decoration: none; cursor: pointer; transition: all 0.3s ease; } .form-actions--with-withdrawal .withdrawal-link:hover { background: rgb(208.9090909091, 231.9545454545, 242.5909090909); } .form-actions--with-withdrawal .withdrawal-link img { width: 22px; height: 22px; object-fit: contain; } @media (max-width: 768px) { .form-actions--with-withdrawal .withdrawal-link { position: static; width: 100%; order: 1; } } .form-actions--with-withdrawal .form-actions-buttons { display: flex; gap: 16px; } @media (max-width: 768px) { .form-actions--with-withdrawal .form-actions-buttons { flex-direction: column-reverse; width: 100%; gap: 8px; } } @media (max-width: 768px) { .form-actions--with-withdrawal { flex-direction: column; gap: 16px; } } .search-field { position: relative; display: flex; align-items: center; width: 340px; height: 44px; background: #FFFFFF; border: 1px solid #dadada; border-radius: 12px; overflow: hidden; } @media (max-width: 768px) { .search-field { width: 100%; } } .search-field input { flex: 1; height: 100%; padding: 0 44px 0 16px; border: none; background: transparent; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 14px; font-weight: 400; color: #1A1A2E; outline: none; } .search-field input::placeholder { color: #8c959f; } .search-field .search-field-btn { position: absolute; right: 0; top: 0; display: flex; align-items: center; justify-content: center; width: 44px; height: 100%; background: transparent; border: none; cursor: pointer; color: #515961; transition: all 0.15s ease; } .search-field .search-field-btn:hover { color: #0049b4; } .search-field .search-field-btn svg { width: 20px; height: 20px; } .search-field:focus-within { border-color: #0049b4; box-shadow: 0 0 0 2px rgba(0, 73, 180, 0.1); } .notice-content-box { padding: 24px; background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 8px; min-height: 300px; line-height: 1.8; font-size: 16px; color: #1A1A2E; } @media (max-width: 768px) { .notice-content-box { padding: 16px; min-height: 200px; } } .notice-content-box p { margin-bottom: 16px; } .notice-content-box img { max-width: 100%; height: auto; } .notice-content-box a { color: #0049b4; text-decoration: underline; } .notice-content-box a:hover { color: rgb(0, 52.3166666667, 129); } .form-row--content .form-label-wrapper { align-self: flex-start; } .attachment-link { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: #EFF6FF; border: 1px solid #E2E8F0; border-radius: 8px; color: #1A1A2E; font-size: 14px; text-decoration: none; transition: all 0.3s ease; } .attachment-link:hover { background: rgba(0, 73, 180, 0.05); border-color: #0049b4; color: #0049b4; } .attachment-link svg { flex-shrink: 0; color: #64748B; } .attachment-link:hover svg { color: #0049b4; } .attachment-list { display: flex; flex-direction: column; gap: 8px; } .attachment-item { display: flex; align-items: center; } .modal-backdrop { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #385670; z-index: 400; opacity: 0.9; visibility: hidden; transition: all 0.3s ease; } .modal-backdrop.show { opacity: 1; visibility: visible; } .modal { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; pointer-events: none; overflow-y: auto; } .modal.show { opacity: 1; visibility: visible; pointer-events: auto; } .modal.show .modal-dialog { transform: scale(1); } @media (max-width: 768px) { .modal { padding: 16px; } } .modal-container { position: relative; max-width: 820px; width: 100%; } .modal-container.modal-sm { max-width: 500px; } .modal-container.modal-lg { max-width: 1000px; } .modal-container.modal-xl { max-width: 1200px; } @media (max-width: 768px) { .modal-container { max-width: 100%; } } .modal-close { position: absolute; top: 0; right: 0; transform: translate(100%, -100%); width: 50px; height: 50px; background: #0049b4; border: none; border-radius: 50%; color: #FFFFFF; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 500; transition: all 0.3s ease; box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); } .modal-close svg { width: 14px; height: 14px; } .modal-close i { font-size: 16px; } @media (max-width: 768px) { .modal-close { width: 40px; height: 40px; } .modal-close svg { width: 12px; height: 12px; } .modal-close i { font-size: 14px; } } .modal-dialog { position: relative; background: #FFFFFF; padding: 0 24px; border-radius: 12px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); max-width: 700px; width: calc(100% - 48px); max-height: 85vh; display: flex; flex-direction: column; transform: scale(0.95); transition: transform 0.3s ease; z-index: 500; margin-left: auto; margin-right: auto; } .modal-dialog.modal-fullscreen { max-width: 100%; max-height: 100%; height: 100%; margin: 0; border-radius: 0; } .modal-header { padding: 30px 50px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid black; border-top-left-radius: 12px; border-top-right-radius: 12px; } .modal-header .modal-title { font-size: 24px; font-weight: 600; color: #212529; margin: 0; } @media (max-width: 768px) { .modal-header { padding: 20px 24px 16px; } .modal-header .modal-title { font-size: 18px; } } .modal-body { padding: 30px 50px; flex: 1; overflow-y: auto; color: #212529; font-size: 20px; line-height: 1.6; } .modal-body p { margin: 0; } .modal-body p + p { margin-top: 16px; } .modal-body.text-center { text-align: center; } @media (max-width: 768px) { .modal-body { padding: 20px 24px; font-size: 16px; } } .modal-footer { padding: 20px 50px 40px; display: flex; gap: 10px; justify-content: center; border-top: none; } .modal-footer.modal-footer-end { justify-content: flex-end; } .modal-footer.modal-footer-between { justify-content: space-between; } @media (max-width: 768px) { .modal-footer { padding: 16px 24px 24px; flex-direction: column; } .modal-footer .btn-modal-cancel, .modal-footer .btn-modal-confirm { width: 100%; height: 46px; font-size: 15px; } } .pop_input_field { width: 100%; padding: 12px 16px; border: 1px solid #E2E8F0; border-radius: 8px; font-size: 14px; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; transition: all 0.3s ease; box-sizing: border-box; } .pop_input_field:focus { outline: none; border-color: #0049b4; box-shadow: 0 0 0 3px rgba(0, 73, 180, 0.1); } .pop_input_field::placeholder { color: #94A3B8; } .pop_input_field.error { border-color: #FF6B6B; } .pop_input_field.error:focus { border-color: #FF6B6B; box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1); } .modal-alert .modal-container { max-width: 500px; } .modal-alert .modal-body { text-align: center; padding: 32px 50px; } .modal-alert .modal-body .alert-icon { width: 64px; height: 64px; margin: 0 auto 24px; display: flex; justify-content: center; align-items: center; font-size: 32px; border-radius: 50%; } .modal-alert .modal-body .alert-icon.alert-success { background: rgba(107, 207, 127, 0.1); color: #6BCF7F; } .modal-alert .modal-body .alert-icon.alert-warning { background: rgba(255, 217, 61, 0.1); color: #FFD93D; } .modal-alert .modal-body .alert-icon.alert-danger { background: rgba(255, 107, 107, 0.1); color: #FF6B6B; } .modal-alert .modal-body .alert-icon.alert-info { background: rgba(0, 73, 180, 0.1); color: #0049b4; } .modal-alert .modal-body .alert-title { font-size: 24px; font-weight: 600; margin-bottom: 8px; color: #1A1A2E; } .modal-alert .modal-body .alert-message { color: #64748B; font-size: 16px; } .breadcrumb { display: flex; align-items: center; gap: 8px; padding: 16px 0; font-size: 14px; } .breadcrumb .breadcrumb-item { display: flex; align-items: center; gap: 8px; color: #64748B; } .breadcrumb .breadcrumb-item a { color: #64748B; transition: all 0.3s ease; } .breadcrumb .breadcrumb-item a:hover { color: #0049b4; } .breadcrumb .breadcrumb-item.active { color: #1A1A2E; font-weight: 500; } .breadcrumb .breadcrumb-item:not(:last-child)::after { content: "/"; color: #94A3B8; margin-left: 8px; } .nav-tabs { display: flex; gap: 4px; border-bottom: 2px solid #E2E8F0; margin-bottom: 32px; } .nav-tabs .nav-item { position: relative; } .nav-tabs .nav-link { display: flex; align-items: center; gap: 8px; padding: 16px 24px; color: #64748B; font-weight: 500; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.3s ease; } .nav-tabs .nav-link:hover { color: #1A1A2E; } .nav-tabs .nav-link.active { color: #0049b4; border-bottom-color: #0049b4; } .nav-tabs .nav-link .badge { padding: 2px 6px; background: #F8FAFC; color: #64748B; border-radius: 50px; font-size: 11px; font-weight: 600; } .nav-pills { display: flex; gap: 8px; padding: 4px; background: #F8FAFC; border-radius: 12px; } .nav-pills .nav-link { padding: 8px 24px; color: #64748B; font-weight: 500; border-radius: 8px; transition: all 0.3s ease; } .nav-pills .nav-link:hover { color: #1A1A2E; background: rgba(255, 255, 255, 0.5); } .nav-pills .nav-link.active { background: #FFFFFF; color: #0049b4; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); } .sidebar-nav .nav-section { margin-bottom: 32px; } .sidebar-nav .nav-section .nav-title { font-size: 12px; font-weight: 600; text-transform: uppercase; color: #64748B; padding: 8px 16px; letter-spacing: 0.05em; } .sidebar-nav .nav-menu { list-style: none; } .sidebar-nav .nav-menu .nav-item { margin-bottom: 4px; } .sidebar-nav .nav-menu .nav-link { display: flex; align-items: center; gap: 16px; padding: 8px 16px; color: #1A1A2E; border-radius: 8px; transition: all 0.3s ease; } .sidebar-nav .nav-menu .nav-link .nav-icon { width: 20px; height: 20px; display: flex; justify-content: center; align-items: center; font-size: 18px; color: #64748B; } .sidebar-nav .nav-menu .nav-link:hover { background: #F8FAFC; color: #0049b4; } .sidebar-nav .nav-menu .nav-link:hover .nav-icon { color: #0049b4; } .sidebar-nav .nav-menu .nav-link.active { background: #EFF6FF; color: #0049b4; font-weight: 500; } .sidebar-nav .nav-menu .nav-link.active .nav-icon { color: #0049b4; } .sidebar-nav .nav-menu .nav-submenu { margin-left: 40px; margin-top: 4px; list-style: none; } .sidebar-nav .nav-menu .nav-submenu .nav-link { font-size: 14px; padding: 4px 16px; } .pagination { display: flex; align-items: center; gap: 4px; } .pagination .page-item.disabled .page-link { opacity: 0.5; cursor: not-allowed; pointer-events: none; } .pagination .page-item.active .page-link { background: #0049b4; color: #FFFFFF; border-color: #0049b4; } .pagination .page-link { display: flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 8px; background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 8px; color: #1A1A2E; font-size: 14px; font-weight: 500; transition: all 0.3s ease; } .pagination .page-link:hover { background: #F8FAFC; border-color: #0049b4; color: #0049b4; } .pagination .page-link.page-prev, .pagination .page-link.page-next { font-size: 18px; } .pagination .page-dots { padding: 0 8px; color: #64748B; } .partners { padding: 80px 0; background: #FFFFFF; } .final-cta { position: relative; padding: 150px 0; overflow: hidden; } #passwordInputPopup .pop_input_group { text-align: left; margin: 0; } #passwordInputPopup .error-message { color: #FF6B6B; font-size: 12px; margin-top: 4px; display: none; animation: fadeInDown 0.3s ease; } #passwordInputPopup .error-message.show { display: block; } @keyframes fadeInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } .auth-group { display: flex; align-items: center; gap: 16px; } .auth-group.authenticated { gap: 0; } .login-btn { display: inline-flex; align-items: center; padding: 10px 20px; color: #1A1A2E; text-decoration: none; border: 2px solid #0049b4; border-radius: 50px; font-weight: 600; font-size: 14px; transition: all 0.3s ease; } .login-btn-box { display: inline-flex; align-items: center; justify-content: center; gap: 4px; padding: 4px 10px; color: #212529; text-decoration: none; border: 1px solid #212529; border-radius: 6px; font-family: "Noto Sans CJK KR", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-weight: 700; font-size: 16px; background: transparent; transition: all 0.3s ease; } .login-btn-box .user-icon { width: 24px; height: 24px; flex-shrink: 0; } .user-profile-dropdown { position: relative; } .user-profile-dropdown .user-profile-btn { display: flex; align-items: center; gap: 8px; padding: 10px 20px; background: #EFF6FF; border: 2px solid transparent; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 14px; } .user-profile-dropdown .user-profile-btn .user-name { color: #1A1A2E; font-weight: 600; } .user-profile-dropdown .user-profile-btn i { color: #64748B; font-size: 12px; transition: transform all 0.15s ease; } .user-profile-dropdown .user-profile-btn:hover { background: #FFFFFF; border-color: #0049b4; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .user-profile-dropdown .user-profile-btn:hover .user-name { color: #0049b4; } .user-profile-dropdown .user-profile-btn:hover i { color: #0049b4; } .user-profile-dropdown.active .user-profile-btn i { transform: rotate(180deg); } .user-profile-dropdown.active .profile-dropdown-menu { visibility: visible; opacity: 1; transform: translateY(0); } .user-profile-dropdown .profile-dropdown-menu { position: absolute; top: calc(100% + 12px); right: 0; width: 280px; background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 12px; box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2); visibility: hidden; opacity: 0; transform: translateY(-10px); transition: all all 0.3s ease; z-index: 100; overflow: hidden; } .user-profile-dropdown .profile-header { padding: 24px; color: #FFFFFF; text-align: center; } .user-profile-dropdown .profile-header .user-greeting { margin: 0 0 4px 0; font-size: 18px; font-weight: 700; } .user-profile-dropdown .profile-header .user-message { font-size: 12px; opacity: 0.9; } .user-profile-dropdown .profile-menu-list { list-style: none; margin: 0; padding: 8px 0; } .user-profile-dropdown .profile-menu-list li { margin: 0; } .user-profile-dropdown .profile-menu-list li a { display: flex; align-items: center; gap: 12px; padding: 12px 24px; color: #1A1A2E; text-decoration: none; font-size: 14px; transition: all 0.15s ease; } .user-profile-dropdown .profile-menu-list li a i { width: 20px; color: #64748B; font-size: 14px; } .user-profile-dropdown .profile-menu-list li a:hover { background: #EFF6FF; color: #0049b4; } .user-profile-dropdown .profile-menu-list li a:hover i { color: #0049b4; } .user-profile-dropdown .profile-footer { padding: 8px 24px 24px; border-top: 1px solid #E2E8F0; } .user-profile-dropdown .profile-footer .logout-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px; background: #F8FAFC; color: #1A1A2E; text-decoration: none; border-radius: 8px; font-weight: 600; font-size: 14px; transition: all 0.3s ease; } .user-profile-dropdown .profile-footer .logout-btn i { font-size: 14px; } .user-profile-dropdown .profile-footer .logout-btn:hover { background: #FF6B6B; color: #FFFFFF; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .drawer-user-info { padding: 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); } .drawer-user-info .drawer-profile { display: flex; align-items: center; gap: 16px; } .drawer-user-info .drawer-profile .profile-avatar { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.2); border-radius: 50%; color: #FFFFFF; } .drawer-user-info .drawer-profile .profile-avatar i { font-size: 32px; } .drawer-user-info .drawer-profile .profile-info { flex: 1; color: #FFFFFF; } .drawer-user-info .drawer-profile .profile-info .profile-name { margin: 0 0 4px 0; font-size: 18px; font-weight: 700; } .drawer-user-info .drawer-profile .profile-info .profile-greeting { font-size: 12px; opacity: 0.9; } .drawer-logout-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px 20px; background: #FF6B6B; color: #FFFFFF; text-decoration: none; border-radius: 12px; font-weight: 600; font-size: 16px; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .drawer-logout-btn i { font-size: 16px; } .drawer-logout-btn:hover { background: #ff3838; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); } @media (max-width: 768px) { .user-profile-dropdown .profile-dropdown-menu { width: 260px; right: -10px; } } @media (max-width: 480px) { .user-profile-dropdown .user-profile-btn { padding: 8px 16px; } .user-profile-dropdown .user-profile-btn .user-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .user-profile-dropdown .profile-dropdown-menu { width: 240px; right: -20px; } } .data-table { width: 100%; background: #FFFFFF; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); } .data-table-wrapper { overflow-x: auto; margin-bottom: 32px; } @media (max-width: 768px) { .data-table-wrapper { border-radius: 12px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); } } .data-table table { width: 100%; border-collapse: collapse; } .data-table table thead { background: #EFF6FF; } .data-table table thead tr { border-bottom: 2px solid #E2E8F0; } .data-table table thead th { padding: 16px 24px; text-align: left; font-size: 14px; font-weight: 600; color: #1A1A2E; white-space: nowrap; } @media (max-width: 768px) { .data-table table thead th { padding: 8px 16px; font-size: 12px; } } .data-table table tbody tr { border-bottom: 1px solid #E2E8F0; transition: all 0.3s ease; } .data-table table tbody tr:last-child { border-bottom: none; } .data-table table tbody tr:hover { background-color: rgba(0, 73, 180, 0.02); } .data-table table tbody td { padding: 16px 24px; font-size: 14px; color: #64748B; } @media (max-width: 768px) { .data-table table tbody td { padding: 8px 16px; font-size: 12px; } } .data-table table tbody td a { color: #1A1A2E; text-decoration: none; transition: all 0.3s ease; } .data-table table tbody td a:hover { color: #0049b4; } .notice-table { width: 100%; background: #FFFFFF; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); } .notice-table-wrapper { overflow-x: auto; } @media (max-width: 768px) { .notice-table-wrapper { border-radius: 0; box-shadow: none; } } .notice-table .table-header { display: grid; grid-template-columns: 80px 1fr 120px; gap: 16px; padding: 16px 24px; background: #EFF6FF; border-bottom: 2px solid #E2E8F0; font-size: 14px; font-weight: 600; color: #1A1A2E; } @media (max-width: 1024px) { .notice-table .table-header { grid-template-columns: 60px 1fr 100px; padding: 8px 16px; font-size: 12px; } } @media (max-width: 768px) { .notice-table .table-header { display: none; } } .notice-table .table-header .col-num { text-align: center; } .notice-table .table-header .col-title { text-align: left; } .notice-table .table-header .col-date { text-align: center; } .notice-table .table-row { display: grid; grid-template-columns: 80px 1fr 120px; gap: 16px; padding: 24px; border-bottom: 1px solid #E2E8F0; transition: all 0.3s ease; cursor: pointer; } @media (max-width: 1024px) { .notice-table .table-row { grid-template-columns: 60px 1fr 100px; padding: 16px; } } @media (max-width: 768px) { .notice-table .table-row { grid-template-columns: 1fr; gap: 8px; padding: 16px; } } .notice-table .table-row:last-child { border-bottom: none; } .notice-table .table-row:hover { background-color: rgba(0, 73, 180, 0.02); } .notice-table .table-row .col-num { display: flex; align-items: center; justify-content: center; font-size: 14px; color: #64748B; font-weight: 500; } @media (max-width: 768px) { .notice-table .table-row .col-num { display: none; } } .notice-table .table-row .col-title { display: flex; align-items: center; font-size: 16px; color: #1A1A2E; font-weight: 500; } @media (max-width: 768px) { .notice-table .table-row .col-title { font-size: 14px; } } .notice-table .table-row .col-title a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; } .notice-table .table-row .col-title a:hover { color: #0049b4; } .notice-table .table-row .col-title .file-icon { display: inline-flex; align-items: center; margin-left: 8px; opacity: 0.6; } .notice-table .table-row .col-title .file-icon img { width: 16px; height: 16px; } .notice-table .table-row .col-date { display: flex; align-items: center; justify-content: center; font-size: 14px; color: #94A3B8; } @media (max-width: 768px) { .notice-table .table-row .col-date { justify-content: flex-start; font-size: 12px; padding-top: 4px; } } @media (max-width: 768px) { .notice-table .table-row .col-date::before { content: "등록일: "; color: #64748B; margin-right: 4px; } } .table-empty { padding: 80px 24px; text-align: center; background: #FFFFFF; border-radius: 12px; } .table-empty .empty-icon { margin-bottom: 24px; } .table-empty .empty-icon img { max-width: 200px; opacity: 0.7; } @media (max-width: 768px) { .table-empty .empty-icon img { max-width: 150px; } } .table-empty .empty-text { font-size: 16px; color: #64748B; } @media (max-width: 768px) { .table-empty .empty-text { font-size: 14px; } } .list-table { width: 100%; background: #FFFFFF; border-radius: 12px; overflow: hidden; } .list-table-wrapper { overflow-x: auto; margin-bottom: 32px; } .list-table .list-table-header { display: flex; align-items: center; background: #3BA4ED; height: 72px; padding: 0 24px; } @media (max-width: 1024px) { .list-table .list-table-header { display: none; } } .list-table .list-table-header .header-cell { display: flex; align-items: center; justify-content: center; padding: 8px 16px; font-size: 20px; font-weight: 700; color: #FFFFFF; text-align: center; } .list-table .list-table-body { display: flex; flex-direction: column; } .list-table .list-table-row { display: flex; align-items: center; height: 54px; padding: 8px 24px; transition: all 0.3s ease; } .list-table .list-table-row:nth-child(even) { background-color: #EDF5FD; } .list-table .list-table-row:nth-child(odd) { background-color: #FFFFFF; } .list-table .list-table-row:hover { background-color: rgba(0, 73, 180, 0.08); } @media (max-width: 1024px) { .list-table .list-table-row { flex-direction: column; align-items: flex-start; gap: 8px; padding: 16px; } } .list-table .list-table-row .row-cell { display: flex; align-items: center; justify-content: center; padding: 8px 16px; font-size: 18px; color: #515151; text-align: center; } @media (max-width: 1024px) { .list-table .list-table-row .row-cell { font-size: 14px; padding: 4px 0; } .list-table .list-table-row .row-cell::before { content: attr(data-label); font-weight: 600; color: #64748B; margin-right: 8px; min-width: 80px; text-align: left; } } .list-table .list-table-row .row-cell--title { justify-content: flex-start; } @media (max-width: 1024px) { .list-table .list-table-row .row-cell--title::before { display: none; } } .list-table .list-table-row .row-cell--title .notice-title-link { display: inline-flex; align-items: center; gap: 8px; color: inherit; text-decoration: none; transition: all 0.3s ease; } .list-table .list-table-row .row-cell--title .notice-title-link:hover { color: #0049b4; } .list-table .list-table-row .row-cell--title .notice-title-link .notice-number { display: none; font-weight: 500; color: #64748B; flex-shrink: 0; } @media (max-width: 1024px) { .list-table .list-table-row .row-cell--title .notice-title-link .notice-number { display: inline; } } .list-table .list-table-row .row-cell--title .file-icon { display: inline-flex; align-items: center; flex-shrink: 0; color: #212529; } .list-table .list-table-row .row-cell--title .file-icon svg { width: 24px; height: 24px; } @media (max-width: 1024px) { .list-table .list-table-row .row-cell--number { display: none; } } .list-table .list-table-row .row-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; } @media (max-width: 1024px) { .list-table .list-table-row .row-actions { width: 100%; justify-content: flex-start; padding-top: 8px; } } .list-table-btn { display: inline-flex; align-items: center; justify-content: center; padding: 8px 16px; height: 40px; border-radius: 8px; font-size: 16px; font-weight: 400; color: #000000; border: none; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; } .list-table-btn:hover { transform: translateY(-1px); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); } .list-table-btn:active { transform: translateY(0); } .list-table-btn--default { background-color: #DADADA; } .list-table-btn--default:hover { background-color: rgb(205.25, 205.25, 205.25); } .list-table-btn--primary { background-color: #A4D6EA; } .list-table-btn--primary:hover { background-color: rgb(143.28125, 204.6651785714, 229.21875); } .list-table-btn--secondary { background-color: #CDD4F0; } .list-table-btn--secondary:hover { background-color: rgb(185.3846153846, 195.1307692308, 234.1153846154); } .table-pagination { display: flex; align-items: center; justify-content: center; gap: 13px; padding: 32px 0; } .table-pagination .pagination-btn { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: none; border: none; cursor: pointer; color: #212529; transition: all 0.3s ease; } .table-pagination .pagination-btn:hover { color: #0049b4; } .table-pagination .pagination-btn:disabled { opacity: 0.4; cursor: not-allowed; } .table-pagination .pagination-btn i { font-size: 16px; } .table-pagination .pagination-numbers { display: flex; align-items: center; gap: 13px; } .table-pagination .pagination-number { display: flex; align-items: center; justify-content: center; min-width: 10px; height: 21px; font-size: 18px; color: #5F666C; background: none; border: none; cursor: pointer; transition: all 0.3s ease; } .table-pagination .pagination-number:hover { color: #0049b4; } .table-pagination .pagination-number.active { font-weight: 700; color: #212529; } .table-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding: 0 8px; gap: 24px; } @media (max-width: 768px) { .table-controls { flex-direction: column; align-items: stretch; gap: 16px; } } .table-controls .total-count { font-size: 16px; color: #64748B; margin-bottom: 0; } .table-controls .total-count strong { color: #0049b4; font-weight: 600; font-size: 20px; } @media (max-width: 768px) { .table-controls .total-count { order: 2; text-align: center; } } .table-controls .search-box { display: flex; gap: 8px; } @media (max-width: 768px) { .table-controls .search-box { order: 1; } } .table-controls .search-box input { flex: 1; min-width: 250px; padding: 8px 16px; border: 1px solid #E2E8F0; border-radius: 8px; font-size: 14px; transition: all 0.3s ease; } @media (max-width: 768px) { .table-controls .search-box input { min-width: auto; } } .table-controls .search-box input:focus { outline: none; border-color: #0049b4; box-shadow: 0 0 0 3px rgba(0, 73, 180, 0.1); } .table-controls .search-box input::placeholder { color: #94A3B8; } .faq-accordion { background: #F6F9FB; border-radius: 12px; overflow: hidden; margin-bottom: 40px; } .faq-accordion .faq-item { border-bottom: 1px solid #DADADA; transition: all 0.3s ease; } .faq-accordion .faq-item:last-child { border-bottom: none; } .faq-accordion .faq-item.active .faq-question .faq-icon { transform: rotate(180deg); } .faq-accordion .faq-item.active .faq-answer { display: block; animation: slideDown 0.3s ease; } .faq-accordion .faq-question { display: flex; align-items: center; justify-content: space-between; padding: 24px 20px; font-size: 18px; font-weight: 700; color: #212529; cursor: pointer; transition: all 0.3s ease; gap: 95px; min-height: 54px; } @media (max-width: 1024px) { .faq-accordion .faq-question { padding: 16px 24px; font-size: 16px; gap: 24px; } } .faq-accordion .faq-question:hover { background: rgba(0, 73, 180, 0.02); } .faq-accordion .faq-question .faq-question-text { flex: 1; line-height: 1.6; } .faq-accordion .faq-question .faq-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; color: #212529; transition: transform 0.3s ease; } .faq-accordion .faq-question .faq-icon svg { width: 14px; height: 8px; } .faq-accordion .faq-answer { display: none; background: #F6F9FB; padding: 24px 20px 32px; border-top: none; } @media (max-width: 1024px) { .faq-accordion .faq-answer { padding: 16px 24px 24px; } } .faq-accordion .faq-answer .faq-answer-content { font-size: 18px; font-weight: 400; color: #515151; background-color: #ffffff; padding: 24px; line-height: 1.8; } @media (max-width: 1024px) { .faq-accordion .faq-answer .faq-answer-content { font-size: 14px; } } .faq-accordion .faq-answer .faq-answer-content p { margin-bottom: 16px; } .faq-accordion .faq-answer .faq-answer-content p:last-child { margin-bottom: 0; } .faq-accordion .faq-answer .faq-answer-content ul, .faq-accordion .faq-answer .faq-answer-content ol { margin: 8px 0; padding-left: 24px; } .faq-accordion .faq-answer .faq-answer-content li { margin-bottom: 4px; } .faq-accordion .faq-answer .faq-answer-content a { color: #0049b4; text-decoration: underline; } .faq-accordion .faq-answer .faq-answer-content a:hover { color: #c3dfea; } .faq-accordion .faq-answer .faq-answer-content code { background: #F8FAFC; padding: 2px 6px; border-radius: 6px; font-family: "Fira Code", "Courier New", monospace; font-size: 0.9em; color: #0049b4; } .faq-accordion .faq-answer .faq-answer-content pre { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px; padding: 16px; overflow-x: auto; margin: 16px 0; } .faq-accordion .faq-answer .faq-answer-content pre code { background: transparent; padding: 0; color: #1A1A2E; } .faq-page { min-height: calc(100vh - 140px); background: #F8FAFC; padding: 48px 24px; } @media (max-width: 768px) { .faq-page { padding: 40px 16px; } } .faq-container { max-width: 1280px; margin: 0 auto; } .faq-header { margin-bottom: 48px; } @media (max-width: 768px) { .faq-header { margin-bottom: 40px; } } .faq-header .page-title { font-size: 40px; font-weight: 700; color: #1A1A2E; margin-bottom: 16px; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } @media (max-width: 768px) { .faq-header .page-title { font-size: 32px; } } .faq-header .page-description { font-size: 16px; color: #64748B; line-height: 1.6; } @media (max-width: 768px) { .faq-header .page-description { font-size: 14px; } } @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } .accordion { background: #FFFFFF; border-radius: 12px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); overflow: hidden; } .accordion .accordion-item { border-bottom: 1px solid #E2E8F0; } .accordion .accordion-item:last-child { border-bottom: none; } .accordion .accordion-item.active .accordion-header { background: rgba(0, 73, 180, 0.03); color: #0049b4; } .accordion .accordion-item.active .accordion-header .accordion-icon { transform: rotate(180deg); } .accordion .accordion-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 32px; font-size: 16px; font-weight: 500; color: #1A1A2E; cursor: pointer; transition: all 0.3s ease; } @media (max-width: 768px) { .accordion .accordion-header { padding: 16px 24px; font-size: 14px; } } .accordion .accordion-header:hover { background: rgba(0, 73, 180, 0.02); } .accordion .accordion-header .accordion-title { flex: 1; } .accordion .accordion-header .accordion-icon { flex-shrink: 0; font-size: 20px; color: #64748B; transition: all 0.3s ease; } .accordion .accordion-content { display: none; padding: 24px 32px; font-size: 14px; color: #64748B; line-height: 1.6; border-top: 1px solid #E2E8F0; } @media (max-width: 768px) { .accordion .accordion-content { padding: 16px 24px; } } .accordion .accordion-content.show { display: block; animation: slideDown 0.3s ease; } .page-title-banner { background: #E9F8FF; position: relative; width: 100%; height: 220px; display: flex; align-items: center; justify-content: center; overflow: hidden; } .page-title-banner::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='%23ffffff' opacity='0.03'/%3E%3C/svg%3E"); background-size: 50px 50px; opacity: 0.5; } .page-title-banner .title-image { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); height: 220px; width: auto; z-index: 1; } .page-title-banner h1 { position: relative; font-size: 40px; font-weight: 700; color: #1A1A2E; margin: 0; z-index: 2; letter-spacing: -0.5px; } @media (max-width: 768px) { .page-title-banner { height: 120px; margin-bottom: 32px; } .page-title-banner .title-image { height: 120px; } .page-title-banner h1 { font-size: 24px; } } .alert { display: flex; align-items: flex-start; gap: 16px; padding: 16px 24px; border-radius: 8px; margin-bottom: 32px; } .alert .alert-icon { font-size: 20px; flex-shrink: 0; } .alert .alert-content { flex: 1; text-align: left; } .alert .alert-content strong { font-weight: 600; } .alert.alert-warning { background: rgba(255, 217, 61, 0.1); border: 1px solid rgba(255, 217, 61, 0.3); color: #B89900; } .alert.alert-error { background: rgba(255, 107, 107, 0.1); border: 1px solid rgba(255, 107, 107, 0.3); color: #ff3838; align-items: center; } .alert.alert-error svg { flex-shrink: 0; } .alert.alert-error span { flex: 1; font-size: 14px; font-weight: 500; } .alert.alert-success { background: rgba(107, 207, 127, 0.1); border: 1px solid rgba(107, 207, 127, 0.3); color: rgb(51.9183673469, 160.0816326531, 73.5510204082); } .alert.alert-info { background: rgba(0, 73, 180, 0.1); border: 1px solid rgba(0, 73, 180, 0.3); color: #c3dfea; } .pagination { display: flex; align-items: center; justify-content: center; gap: 13px; } .pagination .page-first, .pagination .page-prev, .pagination .page-next, .pagination .page-last { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; color: #212529; text-decoration: none; cursor: pointer; transition: all 0.15s ease; } .pagination .page-first:hover:not(.disabled), .pagination .page-prev:hover:not(.disabled), .pagination .page-next:hover:not(.disabled), .pagination .page-last:hover:not(.disabled) { color: #0049b4; } .pagination .page-first.disabled, .pagination .page-prev.disabled, .pagination .page-next.disabled, .pagination .page-last.disabled { color: #adb5bd; cursor: not-allowed; pointer-events: none; } .pagination .page-first svg, .pagination .page-prev svg, .pagination .page-next svg, .pagination .page-last svg { width: 24px; height: 24px; flex-shrink: 0; } .pagination .page-num { display: flex; align-items: center; justify-content: center; min-width: 10px; height: 21px; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 18px; font-weight: 400; color: #5f666c; text-decoration: none; text-align: center; line-height: 1; cursor: pointer; transition: all 0.15s ease; } .pagination .page-num:hover:not(.page-current) { color: #0049b4; } .pagination .page-num.page-current { font-weight: 700; color: #212529; cursor: default; } .pagination .blind { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } .pagination-wrapper { display: flex; justify-content: center; padding: 24px 0; margin-top: 24px; } .hero-carousel-section { position: relative; width: 100%; overflow: hidden; } .hero-carousel-container { position: relative; width: 100%; height: 720px; overflow: hidden; } @media (max-width: 1024px) { .hero-carousel-container { height: 800px; } } @media (max-width: 768px) { .hero-carousel-container { height: 480px; } } .hero-carousel-track { position: relative; width: 100%; height: 100%; } .hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 780px; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out; } .hero-slide.active { opacity: 1; visibility: visible; } .hero-slide[data-slide="0"] { background: #E5F8FF; } .hero-slide[data-slide="1"] { background: #E5F8FF; } .hero-slide[data-slide="2"] { background: #E5F8FF; } .hero-slide-content { width: 100%; max-width: 1280px; height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 80px; position: relative; margin: 0 auto; } @media (min-width: 1440px) { .hero-slide-content { padding: 0 320px; } } @media (min-width: 1280px) { .hero-slide-content { padding: 0 160px; } } @media (max-width: 1024px) { .hero-slide-content { flex-direction: column; padding: 80px 40px; justify-content: center; gap: 40px; } } @media (max-width: 768px) { .hero-slide-content { flex-direction: column-reverse; padding: 60px 20px 80px; gap: 70px; justify-content: flex-end; align-items: center; } } .hero-text-content { flex: 0 0 auto; display: flex; flex-direction: column; gap: 46px; z-index: 2; } @media (max-width: 1024px) { .hero-text-content { align-items: center; text-align: center; } } @media (max-width: 768px) { .hero-text-content { gap: 24px; align-items: flex-start; text-align: left; width: 100%; padding: 0 48px; } } .hero-text .hero-subtitle { font-family: "Noto Sans KR", sans-serif; font-size: 36px; font-weight: 400; line-height: 1; color: #212529; margin: 0 0 12px 0; } @media (max-width: 1024px) { .hero-text .hero-subtitle { font-size: 28px; } } @media (max-width: 768px) { .hero-text .hero-subtitle { font-size: 16px; font-weight: 500; line-height: 34px; letter-spacing: -0.32px; margin: 0; } } .hero-text .hero-title { font-family: "Noto Sans KR", sans-serif; font-size: 50px; font-weight: 700; line-height: 1.2; color: #000000; margin: 0; } @media (max-width: 1024px) { .hero-text .hero-title { font-size: 40px; } } @media (max-width: 768px) { .hero-text .hero-title { font-size: 24px; font-weight: 700; line-height: 34px; letter-spacing: -0.48px; } } .btn-hero-signup { display: inline-flex; align-items: center; justify-content: center; width: 178px; height: 60px; padding: 10px; background: #0049B4; color: #FFFFFF; font-family: "Noto Sans KR", sans-serif; font-size: 20px; font-weight: 700; border-radius: 10px; text-decoration: none; transition: all 0.3s ease; } .btn-hero-signup:hover { background: rgb(0, 52.3166666667, 129); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 73, 180, 0.3); } .btn-hero-signup:active { transform: translateY(0); } @media (max-width: 1024px) { .btn-hero-signup { width: 200px; } } @media (max-width: 768px) { .btn-hero-signup { width: 144px; height: 40px; padding: 8px 10px; font-size: 14px; border-radius: 8px; } } .hero-image-content { flex: 0 0 auto; width: 556px; height: 455px; display: flex; align-items: center; justify-content: center; z-index: 1; } @media (min-width: 1280px) { .hero-image-content { width: 450px; height: 370px; } } @media (max-width: 1024px) { .hero-image-content { width: 400px; height: 330px; } } @media (max-width: 768px) { .hero-image-content { width: 218px; height: 180px; max-width: none; flex-shrink: 0; } } .hero-image-content .hero-image { width: 100%; height: 100%; object-fit: contain; } .hero-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 60px; height: 60px; background: rgba(255, 255, 255, 0.5); border: none; border-radius: 50px; cursor: pointer; display: none; align-items: center; justify-content: center; z-index: 10; transition: all 0.3s ease; } .hero-nav-btn:hover { background: rgba(255, 255, 255, 0.8); transform: translateY(-50%) scale(1.1); } .hero-nav-btn:active { transform: translateY(-50%) scale(0.95); } .hero-nav-btn svg { width: 22px; height: 22px; } @media (min-width: 1280px) { .hero-nav-btn { display: flex; } } .hero-nav-prev { left: 210px; } .hero-nav-prev svg { transform: rotate(180deg); } @media (min-width: 1280px) { .hero-nav-prev { left: 100px; } } @media (max-width: 1024px) { .hero-nav-prev { left: 40px; } } @media (max-width: 768px) { .hero-nav-prev { left: 20px; } } .hero-nav-next { right: 210px; } @media (min-width: 1280px) { .hero-nav-next { right: 100px; } } @media (max-width: 1024px) { .hero-nav-next { right: 40px; } } @media (max-width: 768px) { .hero-nav-next { right: 20px; } } .hero-carousel-indicators { position: absolute; bottom: 160px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; } @media (max-width: 768px) { .hero-carousel-indicators { top: 60px; right: 28px; bottom: auto; left: auto; transform: none; flex-direction: row; gap: 6px; align-items: center; } } .hero-indicator { width: 14px; height: 14px; border-radius: 50%; background: #F1F1F1; border: none; cursor: pointer; padding: 0; transition: all 0.3s ease; } .hero-indicator.active { background: #0049B4; } .hero-indicator:hover:not(.active) { background: rgba(0, 0, 0, 0.5); } @media (max-width: 768px) { .hero-indicator { width: 6px; height: 6px; border-radius: 50%; background: transparent; border: 1px solid #8C959F; } .hero-indicator.active { width: 6px; height: 6px; border-radius: 50%; background: #0049B4; border: none; } } .hero-autoplay-toggle { display: flex; align-items: center; justify-content: center; margin-left: 8px; cursor: pointer; padding: 0; transition: all 0.3s ease; position: relative; } .hero-autoplay-toggle svg { position: absolute; opacity: 0; transition: opacity 0.3s ease; } .hero-autoplay-toggle svg.active { opacity: 1; } .hero-autoplay-toggle:hover { background: rgb(255, 255, 255); border-color: #0049B4; box-shadow: 0 2px 8px rgba(0, 73, 180, 0.2); } @media (max-width: 768px) { .hero-autoplay-toggle { display: none; } } .api-search-section { position: relative; padding: 0; overflow: hidden; background: #e9f9ff; } .api-search-section .search-background { position: absolute; inset: 0; background-image: url("/img/bg_main_intersect.png"); background-size: cover; background-position: center; background-repeat: no-repeat; pointer-events: none; } .api-search-section .search-content-wrapper { position: relative; display: flex; align-items: center; justify-content: center; gap: 40px; z-index: 1; } @media (max-width: 1024px) { .api-search-section .search-content-wrapper { flex-direction: column; gap: 24px; padding-top: 40px; } } @media (max-width: 768px) { .api-search-section .search-content-wrapper { flex-direction: row; flex-wrap: wrap; gap: 8px; padding-top: 20px; justify-content: center; } } .api-search-section .search-character { width: 154px; height: 148px; flex-shrink: 0; } .api-search-section .search-character img { width: 100%; height: 100%; object-fit: contain; } @media (max-width: 1024px) { .api-search-section .search-character { width: 120px; height: 115px; } } @media (max-width: 768px) { .api-search-section .search-character { width: 68px; height: 65px; } } .api-search-section .search-text-content { text-align: left; } @media (max-width: 1024px) { .api-search-section .search-text-content { text-align: center; } } @media (max-width: 768px) { .api-search-section .search-text-content { text-align: left; } } .api-search-section .search-title { font-family: "Noto Sans KR", sans-serif; font-size: 36px; font-weight: 700; line-height: 1.3; color: #000000; margin: 0; } @media (max-width: 1024px) { .api-search-section .search-title { font-size: 28px; } } @media (max-width: 768px) { .api-search-section .search-title { font-size: 16px; line-height: 1.4; color: #212529; } } .api-search-section .search-input-wrapper { position: relative; display: flex; justify-content: center; padding: 0px 0 30px; z-index: 1; } @media (max-width: 1024px) { .api-search-section .search-input-wrapper { padding: 30px 20px 20px; } } @media (max-width: 768px) { .api-search-section .search-input-wrapper { justify-content: flex-start; padding: 0px 28px 12px 27px; } } .api-search-section .search-form { width: 100%; max-width: 816px; } .api-search-section .search-box { position: relative; width: 100%; height: 80px; background: #FFFFFF; border: 6px solid #0049B4; border-radius: 50px; display: flex; align-items: center; padding: 0 24px; } @media (max-width: 1024px) { .api-search-section .search-box { height: 60px; border: 4px solid #0049B4; padding: 0 16px; } } @media (max-width: 768px) { .api-search-section .search-box { height: 36px; border: 3px solid #0049B4; border-radius: 18px; padding: 0 12px; } } .api-search-section .search-input { flex: 1; width: 100%; height: 100%; border: none; outline: none; background: transparent; font-family: "Noto Sans KR", sans-serif; font-size: 17px; font-weight: 500; color: #000000; padding: 0 20px; } .api-search-section .search-input::placeholder { color: #B3B3B3; font-weight: 400; } @media (max-width: 1024px) { .api-search-section .search-input { font-size: 15px; padding: 0 12px; } } @media (max-width: 768px) { .api-search-section .search-input { font-size: 11px; font-weight: 500; padding: 0 8px; } .api-search-section .search-input::placeholder { color: #8C959F; font-weight: 500; } } .api-search-section .search-icon-button { background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex-shrink: 0; transition: transform 0.3s ease; } .api-search-section .search-icon-button:hover { transform: scale(1.1); } .api-search-section .search-icon-button:active { transform: scale(0.95); } .api-search-section .search-icon-button svg { width: 33px; height: 34px; } @media (max-width: 1024px) { .api-search-section .search-icon-button svg { width: 28px; height: 29px; } } @media (max-width: 768px) { .api-search-section .search-icon-button svg { width: 16px; height: 16px; } } @media (max-width: 768px) { .api-search-section .search-icon-button { width: 20px; height: 20px; } } .api-search-section .hashtag-section { position: relative; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 0 20px 0px; z-index: 1; } @media (max-width: 1024px) { .api-search-section .hashtag-section { flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 0 20px 30px; } } @media (max-width: 768px) { .api-search-section .hashtag-section { flex-direction: row; flex-wrap: wrap; gap: 12px; padding: 0 20px 20px; justify-content: center; } } .api-search-section .hashtag-label { font-family: "Noto Sans KR", sans-serif; font-size: 16px; font-weight: 700; color: #000000; white-space: nowrap; } @media (max-width: 768px) { .api-search-section .hashtag-label { font-size: 12px; color: #212529; } } .api-search-section .hashtag-list { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; } @media (max-width: 1024px) { .api-search-section .hashtag-list { justify-content: center; gap: 10px; } } @media (max-width: 768px) { .api-search-section .hashtag-list { gap: 8px; justify-content: left; } } .api-search-section .hashtag-link { font-family: "Noto Sans KR", sans-serif; font-size: 16px; font-weight: 400; color: #000000; text-decoration: none; white-space: nowrap; transition: color 0.3s ease; } .api-search-section .hashtag-link:hover { color: #0049B4; text-decoration: underline; } @media (max-width: 1024px) { .api-search-section .hashtag-link { font-size: 14px; } } @media (max-width: 768px) { .api-search-section .hashtag-link { font-size: 12px; color: #212529; } } .api-search-section .hashtag-separator { font-family: "Noto Sans KR", sans-serif; font-size: 16px; color: #000000; user-select: none; } @media (max-width: 1024px) { .api-search-section .hashtag-separator { font-size: 14px; } } @media (max-width: 768px) { .api-search-section .hashtag-separator { font-size: 10px; color: #212529; display: flex; align-items: center; height: 10px; } } .api-showcase { position: relative; display: flex; align-items: center; padding: 75px 0 100px; background: #FFFFFF; overflow: hidden; } @media (max-width: 768px) { .api-showcase { padding: 40px 0 60px; } } .api-showcase .showcase-background { position: absolute; inset: 0; background-image: url("/img/bg_main_recommend_apis.png"); background-size: cover; background-position: center; background-repeat: no-repeat; pointer-events: none; } .api-showcase .showcase-wrapper { max-width: 1228px; margin: 0 auto; padding: 0 20px; position: relative; width: 100%; z-index: 1; } .api-showcase .section-header { text-align: center; margin-bottom: 24px; position: relative; padding-right: 150px; } @media (max-width: 1024px) { .api-showcase .section-header { padding-right: 0; } } @media (max-width: 768px) { .api-showcase .section-header { display: flex; align-items: center; justify-content: center; padding-right: 0; margin-bottom: 18px; position: relative; } } .api-showcase .section-title { font-family: "Noto Sans KR", sans-serif; font-size: 44px; font-weight: 700; line-height: 1.3; color: #000000; margin: 0; } @media (max-width: 1024px) { .api-showcase .section-title { font-size: 36px; } } @media (max-width: 768px) { .api-showcase .section-title { font-size: 20px; color: #212529; letter-spacing: -0.4px; } } .api-showcase .section-subtitle { font-family: "Noto Sans KR", sans-serif; font-size: 26px; font-weight: 400; line-height: 1.5; color: #1E1E1E; margin-bottom: 30px; } @media (max-width: 1024px) { .api-showcase .section-subtitle { font-size: 20px; } } @media (max-width: 768px) { .api-showcase .section-subtitle { display: none; } } .api-showcase .btn-all-apis { position: absolute; top: 75%; right: 0; transform: translateY(-50%); display: inline-flex; align-items: center; justify-content: center; gap: 21px; padding: 12px 24px; font-family: "Noto Sans KR", sans-serif; font-size: 15px; font-weight: 500; color: #FFFFFF; background: #008ae2; text-decoration: none; border-radius: 10px; transition: all 0.3s ease; height: 40px; width: 135px; } @media (max-width: 1024px) { .api-showcase .btn-all-apis { position: static; transform: none; margin: 24px auto 0; } } @media (max-width: 768px) { .api-showcase .btn-all-apis { position: absolute; top: 50%; right: 0; transform: translateY(-50%); margin: 0; width: 72px; height: 24px; padding: 10px; font-size: 10px; font-weight: 700; border-radius: 4px; gap: 10px; } } .api-showcase .btn-all-apis svg { width: 11px; height: 17px; transition: transform 0.3s ease; } .api-showcase .btn-all-apis svg path { stroke: #FFFFFF; } @media (max-width: 768px) { .api-showcase .btn-all-apis svg { width: 5px; height: 8px; } } .api-showcase .btn-all-apis:hover { background: rgb(0, 106.8584070796, 175); } .api-showcase .btn-all-apis:hover svg { transform: translateX(4px); } .api-showcase .api-cards-container { display: flex; gap: 32px; justify-content: center; } @media (min-width: 1280px) { .api-showcase .api-cards-container { gap: 24px; } } @media (max-width: 1024px) { .api-showcase .api-cards-container { flex-wrap: wrap; gap: 20px; justify-content: center; } } @media (max-width: 768px) { .api-showcase .api-cards-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 17px; } } .api-showcase .api-card { width: 283px; height: 320px; background: #FFFFFF; border: 1px solid #DDDDDD; border-radius: 20px; padding: 36px 38px; display: flex; flex-direction: column; align-items: flex-start; position: relative; transition: all 0.3s ease; gap: 0px; cursor: pointer; } .api-showcase .api-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); border-color: #008ae2; } @media (max-width: 1024px) { .api-showcase .api-card { width: calc(50% - 10px); min-width: 250px; } } @media (max-width: 768px) { .api-showcase .api-card { width: 100%; height: auto; min-width: unset; min-height: 200px; padding: 20px 19px; border-radius: 12px; border: 1px solid #DADADA; box-shadow: 2px 2px 5px 0px rgba(185, 204, 222, 0.3); gap: 20px; } } .api-showcase .card-title { font-family: "Noto Sans KR", sans-serif; font-size: 24px; font-weight: 700; line-height: 1.67; color: #2A2A2A; margin: 0 0 20px 0; } @media (max-width: 768px) { .api-showcase .card-title { font-size: 15px; line-height: 1; color: #000000; margin: 0 0 12px 0; } } .api-showcase .card-description { font-family: "Noto Sans KR", sans-serif; font-size: 15px; font-weight: 400; line-height: 1.43; color: #515151; margin: 0; flex: 1; text-align: left; } @media (max-width: 768px) { .api-showcase .card-description { font-size: 12px; font-weight: 500; line-height: 1; } } .api-showcase .card-illustration { width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; margin-top: auto; align-self: flex-end; } .api-showcase .card-illustration img { width: 100%; height: 100%; object-fit: contain; } @media (max-width: 768px) { .api-showcase .card-illustration { width: 48px; height: 48px; } } .info-section { position: relative; padding: 100px 0; background: #FFFFFF; overflow: hidden; min-height: 980px; display: flex; align-items: center; } @media (max-width: 768px) { .info-section { min-height: 392px; padding: 75px 20px 20px; } } .info-section .info-background { position: absolute; inset: 0; background-image: url("/img/bg_api_intro.svg"); background-size: cover; background-position: center; pointer-events: none; } .info-section .container { position: relative; z-index: 1; } @media (max-width: 768px) { .info-section .container { margin: 0; padding: 0; max-width: 100%; width: 100%; } } .info-section .info-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 80px; } @media (max-width: 1024px) { .info-section .info-wrapper { flex-direction: column; gap: 64px; } } @media (max-width: 768px) { .info-section .info-wrapper { display: block; flex-direction: column; gap: 20px; position: relative; } } .info-section .info-content { flex: 1; max-width: 600px; } @media (max-width: 1024px) { .info-section .info-content { text-align: center; max-width: 100%; } } @media (max-width: 768px) { .info-section .info-content { text-align: left; max-width: 100%; order: 1; } } .info-section .info-title { font-family: "Noto Sans KR", sans-serif; font-size: 28px; font-weight: 400; line-height: 1.4; color: #000000; margin: 0 0 24px 0; } @media (max-width: 1024px) { .info-section .info-title { font-size: 36px; } } @media (max-width: 768px) { .info-section .info-title { font-size: 16px; font-weight: 500; line-height: 1; color: #212529; margin: 0 0 8px 0; } .info-section .info-title span { margin-bottom: 10px; } } .info-section .info-title .title-highlight { font-weight: 700; color: #0049B4; font-size: 36px; } @media (max-width: 768px) { .info-section .info-title .title-highlight { font-size: 20px; display: block; letter-spacing: -0.4px; margin-top: 8px; } } .info-section .info-description { font-family: "Noto Sans KR", sans-serif; font-size: 18px; font-weight: 400; line-height: 1.6; color: #000000; margin: 0 0 48px 0; } @media (max-width: 1024px) { .info-section .info-description { font-size: 16px; } } @media (max-width: 768px) { .info-section .info-description { font-size: 14px; font-weight: 400; line-height: 22px; color: #515961; margin: 24px 0 20px 0; } } .info-section .action-buttons { display: flex; gap: 24px; } @media (max-width: 1024px) { .info-section .action-buttons { justify-content: center; } } @media (max-width: 768px) { .info-section .action-buttons { flex-direction: row; align-items: stretch; gap: 15px; width: 100%; } } .info-section .action-btn { display: inline-flex; align-items: center; justify-content: center; padding: 18px 52px; font-family: "Noto Sans KR", sans-serif; font-size: 24px; font-weight: 700; line-height: 56px; border-radius: 20px; text-decoration: none; white-space: nowrap; transition: all 0.3s ease; min-width: 310px; height: 128px; } @media (max-width: 768px) { .info-section .action-btn { font-size: 14px; font-weight: 700; line-height: 1.4; padding: 8px 10px; min-width: unset; width: calc(50% - 7.5px); height: 72px; border-radius: 8px; white-space: normal; word-break: keep-all; text-align: center !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-direction: column; } } .info-section .action-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); } .info-section .action-btn:active { transform: translateY(0); } .info-section .action-btn-primary { background: #0049B4; color: #FFFFFF; } .info-section .action-btn-primary:hover { background: rgb(0, 52.3166666667, 129); } .info-section .action-btn-secondary { background: #00ACDD; color: #FFFFFF; } .info-section .action-btn-secondary:hover { background: rgb(0, 132.3076923077, 170); } .info-section .info-image { flex: 1; max-width: 560px; display: flex; align-items: center; justify-content: center; } .info-section .info-image img { width: 100%; height: auto; object-fit: contain; } @media (max-width: 1024px) { .info-section .info-image { max-width: 100%; } } @media (max-width: 768px) { .info-section .info-image { position: absolute; top: -90px; right: 0; width: 128px; height: 128px; max-width: 128px; flex: none; } .info-section .info-image img { width: 128px; height: 128px; } } .support-center { position: relative; padding: 150px 0; background: #eef7fd; overflow: hidden; min-height: 980px; } @media (max-width: 768px) { .support-center { min-height: 392px; padding: 60px 20px; } } .support-center .support-background { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; max-width: 1920px; pointer-events: none; } .support-center .support-background::before { content: ""; position: absolute; top: 17px; left: 46%; width: 693px; height: 597px; background-image: url("/img/bg_support_center.png"); background-size: cover; background-repeat: no-repeat; opacity: 0.5; } @media (max-width: 768px) { .support-center .support-background::before { top: 0; left: auto; right: 0; width: 187px; height: 177px; opacity: 1; } } .support-center .container { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 40px; } @media (max-width: 768px) { .support-center .container { padding: 0; max-width: 100%; width: 100%; } } .support-center .section-header { margin-bottom: 80px; text-align: center; } @media (max-width: 768px) { .support-center .section-header { margin-bottom: 24px; text-align: left; } } .support-center .section-header .section-title { font-family: "Noto Sans KR", sans-serif; font-size: 44px; line-height: 1.6; color: #000000; margin: 0; text-align: left; } @media (max-width: 1024px) { .support-center .section-header .section-title { font-size: 36px; line-height: 1.4; } } @media (max-width: 768px) { .support-center .section-header .section-title { font-size: 16px; line-height: 1; letter-spacing: -0.32px; } } .support-center .section-header .section-title .title-regular { font-weight: 400; } @media (max-width: 768px) { .support-center .section-header .section-title .title-regular { font-weight: 500; } } .support-center .section-header .section-title .title-bold { font-weight: 700; } @media (max-width: 768px) { .support-center .section-header .section-title .title-bold { font-size: 20px; letter-spacing: -0.4px; } } .support-center .support-grid { display: flex; gap: 32px; justify-content: center; align-items: stretch; max-width: 1228px; margin: 0 auto; } @media (max-width: 1024px) { .support-center .support-grid { flex-direction: column; align-items: center; gap: 20px; } } @media (max-width: 768px) { .support-center .support-grid { flex-direction: row; justify-content: space-between; align-items: stretch; gap: 12px; max-width: 100%; } } .support-center .support-card { background: #FFFFFF; border-radius: 20px; text-decoration: none; transition: all 0.3s ease; display: flex; box-sizing: border-box; position: relative; overflow: hidden; height: 377px; } @media (max-width: 1024px) { .support-center .support-card { width: 100%; max-width: 598px; height: auto; min-height: 260px; } } @media (max-width: 768px) { .support-center .support-card { width: calc(33.333% - 8px); min-width: 0; height: 168px; min-height: 168px; max-width: none; border-radius: 12px; padding: 26px 0 25px; flex-direction: column; align-items: center; justify-content: flex-start; gap: 16px; } } .support-center .support-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 73, 180, 0.15); } @media (max-width: 768px) { .support-center .support-card:hover { transform: translateY(-2px); } } .support-center .support-card .card-icon { display: flex; align-items: center; justify-content: center; } .support-center .support-card .card-icon img { width: 100%; height: 100%; object-fit: contain; } @media (max-width: 768px) { .support-center .support-card .card-icon { width: 48px !important; height: 48px !important; margin-bottom: 0 !important; } } .support-center .support-card .card-content { display: flex; flex-direction: column; justify-content: center; } @media (max-width: 768px) { .support-center .support-card .card-content { align-items: center; text-align: center; gap: 4px; } } .support-center .support-card .card-content h3 { font-family: "Noto Sans KR", sans-serif; font-size: 32px; font-weight: 700; color: #212529; margin: 0 0 10px 0; line-height: 1.3; } @media (max-width: 1024px) { .support-center .support-card .card-content h3 { font-size: 28px; } } @media (max-width: 768px) { .support-center .support-card .card-content h3 { font-size: 15px; margin: 0; line-height: 1; } } .support-center .support-card .card-content p { font-family: "Noto Sans KR", sans-serif; font-size: 18px; font-weight: 400; color: #515961; margin: 0; line-height: 1.4; } @media (max-width: 1024px) { .support-center .support-card .card-content p { font-size: 16px; } } @media (max-width: 768px) { .support-center .support-card .card-content p { font-size: 10px; line-height: 1; } } .support-center .support-card--notice { width: 598px; flex-shrink: 0; flex-direction: column; align-items: center; padding: 60px 40px; background: #0049B4; } @media (max-width: 1024px) { .support-center .support-card--notice { width: 100%; max-width: 598px; padding: 50px 40px; } } @media (max-width: 768px) { .support-center .support-card--notice { width: calc(33.333% - 8px); padding: 26px 0 25px; gap: 19px; } } .support-center .support-card--notice .card-icon { width: 174px; height: 120px; margin-bottom: 36px; } .support-center .support-card--notice .card-content { align-items: center; text-align: center; } .support-center .support-card--notice .card-content h3 { color: #FFFFFF; font-size: 36px; } @media (max-width: 1024px) { .support-center .support-card--notice .card-content h3 { font-size: 32px; } } @media (max-width: 768px) { .support-center .support-card--notice .card-content h3 { font-size: 15px; color: #FFFFFF; } } .support-center .support-card--notice .card-content p { color: rgba(255, 255, 255, 0.9); font-size: 20px; } @media (max-width: 1024px) { .support-center .support-card--notice .card-content p { font-size: 18px; } } @media (max-width: 768px) { .support-center .support-card--notice .card-content p { font-size: 10px; color: rgba(255, 255, 255, 0.9); } } .support-center .support-card--notice:hover { background: rgb(0, 62.6583333333, 154.5); } .support-center .support-card--faq, .support-center .support-card--qna { width: 283px; flex-shrink: 0; flex-direction: column; align-items: center; padding: 60px 40px; } @media (max-width: 1024px) { .support-center .support-card--faq, .support-center .support-card--qna { width: 100%; max-width: 598px; padding: 40px; } } @media (max-width: 768px) { .support-center .support-card--faq, .support-center .support-card--qna { width: calc(33.333% - 8px); padding: 26px 0 25px; } } .support-center .support-card--faq .card-icon, .support-center .support-card--qna .card-icon { width: 120px; height: 120px; margin-bottom: 36px; } .support-center .support-card--faq .card-content, .support-center .support-card--qna .card-content { align-items: center; text-align: center; flex: none; } .support-center .support-card--faq .card-content h3, .support-center .support-card--qna .card-content h3 { font-size: 36px; } @media (max-width: 1024px) { .support-center .support-card--faq .card-content h3, .support-center .support-card--qna .card-content h3 { font-size: 32px; } } @media (max-width: 768px) { .support-center .support-card--faq .card-content h3, .support-center .support-card--qna .card-content h3 { font-size: 16px; } } .support-center .support-card--faq .card-content p, .support-center .support-card--qna .card-content p { font-size: 20px; } @media (max-width: 1024px) { .support-center .support-card--faq .card-content p, .support-center .support-card--qna .card-content p { font-size: 18px; } } @media (max-width: 768px) { .support-center .support-card--faq .card-content p, .support-center .support-card--qna .card-content p { font-size: 10px; } } .support-center .support-card--faq { background: #DAF0FF; } .support-center .support-card--faq .card-content h3 { color: #212529; } .support-center .support-card--qna { background: #D9F6F8; } .support-center .support-card--qna .card-content h3 { color: #212529; } .api-stats-section { position: relative; min-height: 720px; padding: 100px 0; overflow: hidden; display: flex; align-items: center; justify-content: center; } @media (max-width: 1024px) { .api-stats-section { min-height: 600px; padding: 64px 0; } } @media (max-width: 768px) { .api-stats-section { min-height: 320px; padding: 60px 20px; align-items: flex-start; } } .stats-background { position: absolute; inset: 0; background-image: url("/img/bg_main_api_usage.png"); background-size: cover; background-position: center; background-repeat: no-repeat; overflow: hidden; } .api-stats-section .container { position: relative; z-index: 1; } @media (max-width: 768px) { .api-stats-section .container { display: flex; flex-direction: column; gap: 24px; width: 100%; max-width: 100%; padding: 0; } } .api-stats-section .section-header { text-align: center; margin-bottom: 80px; } @media (max-width: 768px) { .api-stats-section .section-header { text-align: left; margin-bottom: 0; } } .api-stats-section .section-title { font-family: "Noto Sans KR", sans-serif; line-height: 1.5; margin: 0; } .api-stats-section .section-title .title-top { display: block; font-size: 32px; font-weight: 400; color: #E8E8E8; margin-bottom: 8px; } @media (max-width: 1024px) { .api-stats-section .section-title .title-top { font-size: 28px; } } @media (max-width: 768px) { .api-stats-section .section-title .title-top { font-size: 16px; font-weight: 500; letter-spacing: -0.32px; margin-bottom: 0; } } .api-stats-section .section-title .title-highlight { font-size: 44px; font-weight: 700; color: #81D5FF; } @media (max-width: 1024px) { .api-stats-section .section-title .title-highlight { font-size: 36px; } } @media (max-width: 768px) { .api-stats-section .section-title .title-highlight { font-size: 20px; } } .api-stats-section .section-title { font-size: 44px; font-weight: 400; color: #E8E8E8; } @media (max-width: 1024px) { .api-stats-section .section-title { font-size: 36px; } } @media (max-width: 768px) { .api-stats-section .section-title { font-size: 20px; font-weight: 700; line-height: 1; letter-spacing: -0.4px; } } .api-stats-section .stats-cards { display: flex; align-items: center; justify-content: center; gap: 0; max-width: 1200px; margin: 0 auto; } @media (max-width: 1024px) { .api-stats-section .stats-cards { flex-direction: column; gap: 40px; } } @media (max-width: 768px) { .api-stats-section .stats-cards { flex-direction: row !important; justify-content: center; align-items: center; gap: 0 !important; padding: 0; height: 132px; max-width: 100%; margin: 0; } } .api-stats-section .stat-card { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 145px; } @media (max-width: 1024px) { .api-stats-section .stat-card { width: auto; } } @media (max-width: 768px) { .api-stats-section .stat-card { gap: 11px; padding: 10px 14px; height: 132px; justify-content: center; width: 120px; } } .api-stats-section .stat-card .stat-label { font-family: "Noto Sans KR", sans-serif; font-size: 20px; font-weight: 500; color: #FFFFFF; line-height: 40px; margin: 0; white-space: nowrap; } @media (max-width: 768px) { .api-stats-section .stat-card .stat-label { font-size: 10px; font-weight: 500; line-height: 1; order: -1; } } .api-stats-section .stat-card .stat-icon { width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; } .api-stats-section .stat-card .stat-icon svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)); } .api-stats-section .stat-card .stat-icon img { width: 100%; height: 100%; object-fit: contain; } @media (max-width: 768px) { .api-stats-section .stat-card .stat-icon { width: 40px; height: 40px; } } .api-stats-section .stat-card .stat-number { font-family: "Noto Sans KR", sans-serif; font-size: 44px; font-weight: 700; color: #EFDCB2; line-height: 61px; margin: 0; text-align: center; white-space: nowrap; } @media (max-width: 1024px) { .api-stats-section .stat-card .stat-number { font-size: 40px; } } @media (max-width: 768px) { .api-stats-section .stat-card .stat-number { font-size: 16px; line-height: 1; } } .api-stats-section .stat-card:hover .stat-icon { transform: scale(1.1); } .api-stats-section .stats-divider { width: 1px; height: 240px; margin: 0 60px; flex-shrink: 0; } @media (max-width: 1024px) { .api-stats-section .stats-divider { display: none; } } @media (max-width: 768px) { .api-stats-section .stats-divider { display: block !important; width: 1px; height: 108px; margin: 0; background-color: rgb(250, 250, 250); } } .stat-number { animation: countUp 0.6s ease-out forwards; } @keyframes countUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .signup-cta-section { position: relative; min-height: 329px; display: flex; align-items: center; justify-content: center; overflow: hidden; } @media (max-width: 768px) { .signup-cta-section { min-height: 160px; padding: 44px 0; } } .signup-cta-section .cta-background { position: absolute; inset: 0; background-image: url("/img/bg_main_join.png"); background-size: cover; background-position: center; background-repeat: no-repeat; overflow: hidden; } .signup-cta-section .container { position: relative; z-index: 1; } .signup-cta-section .cta-content { display: flex; flex-direction: column; align-items: center; gap: 40px; text-align: center; } @media (max-width: 768px) { .signup-cta-section .cta-content { gap: 12px; } } .signup-cta-section .cta-title { font-family: "Noto Sans KR", sans-serif; font-size: 40px; font-weight: 700; color: #000000; line-height: normal; margin: 0; } @media (max-width: 1024px) { .signup-cta-section .cta-title { font-size: 32px; } } @media (max-width: 768px) { .signup-cta-section .cta-title { font-size: 16px; font-weight: 700; color: #212529; letter-spacing: -0.32px; line-height: 0.9994; } } .signup-cta-section .btn-signup-cta { display: inline-flex; align-items: center; justify-content: center; padding: 10px; min-height: 60px; width: 178px; background: #008ae2; color: #FFFFFF; font-family: "Noto Sans KR", sans-serif; font-size: 20px; font-weight: 700; border-radius: 10px; text-decoration: none; transition: all 0.3s ease; } .signup-cta-section .btn-signup-cta:hover { background: rgb(0, 106.8584070796, 175); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 138, 226, 0.3); } .signup-cta-section .btn-signup-cta:active { transform: translateY(0); } @media (max-width: 768px) { .signup-cta-section .btn-signup-cta { width: 152px; min-height: 40px; padding: 12px 34px; font-size: 12px; font-weight: 700; border-radius: 4px; line-height: 16px; } } .signup-cta-section .cta-divider { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: #DDDDDD; } .api-market-container { display: flex; min-height: 100vh; background-color: #FFFFFF; position: relative; margin-bottom: 20px; } .api-market-sidebar { width: 283px; background-color: #F8FBFD; border-radius: 20px; padding: 40px 24px; position: sticky; top: 24px; height: calc(100vh - 32px); flex-shrink: 0; margin: 16px; } @media (max-width: 1024px) { .api-market-sidebar { width: 240px; } } @media (max-width: 768px) { .api-market-sidebar { position: fixed; left: 0; top: 60px; transform: translateX(-100%); transition: transform 0.3s ease; box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); z-index: 500; height: calc(100vh - 60px); margin: 0; border-radius: 0; } .api-market-sidebar.mobile-open { transform: translateX(0); } } .api-sidebar-header { display: flex; justify-content: center; margin-bottom: 32px; padding-bottom: 24px; } .api-sidebar-header img { max-width: 100%; height: auto; } .api-sidebar-nav .menu-section { margin-bottom: 0; border-bottom: 1px solid #DDDDDD; } .api-sidebar-nav .menu-section:last-child { border-bottom: none; } .api-sidebar-nav .menu-title { padding: 16px 10px; font-size: 20px; font-weight: 400; color: #1A1A2E; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: space-between; position: relative; } .api-sidebar-nav .menu-title:hover { background-color: rgba(0, 73, 180, 0.05); } .api-sidebar-nav .menu-title.active { font-weight: 700; color: #0049b4; } .api-sidebar-nav .menu-title .api-count { display: inline-flex; align-items: center; justify-content: center; min-width: 24px; height: 24px; padding: 0 8px; background-color: rgba(0, 73, 180, 0.1); color: #0049b4; font-size: 12px; font-weight: 600; border-radius: 50px; transition: all 0.3s ease; } .api-sidebar-nav .menu-title.active .api-count { background-color: #0049b4; color: #FFFFFF; } .api-sidebar-nav .accordion-section .menu-title.accordion-trigger .menu-title-text { flex: 1; } .api-sidebar-nav .accordion-section .menu-title.accordion-trigger .accordion-icon { display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; transition: transform 0.3s ease; } .api-sidebar-nav .accordion-section .menu-title.accordion-trigger .accordion-icon i { font-size: 12px; color: #64748B; transition: all 0.3s ease; } .api-sidebar-nav .accordion-section .menu-title.accordion-trigger:hover .accordion-icon i { color: #0049b4; } .api-sidebar-nav .accordion-section .menu-title.accordion-trigger.expanded .accordion-icon { transform: rotate(180deg); } .api-sidebar-nav .accordion-section .menu-title.accordion-trigger.active .accordion-icon i { color: #0049b4; } .api-sidebar-nav .api-list { padding-left: 16px; margin-top: 0; margin-bottom: 0; } .api-sidebar-nav .api-list.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease; } .api-sidebar-nav .api-list.accordion-content.expanded { max-height: 500px; margin-top: 4px; margin-bottom: 8px; } .api-sidebar-nav .api-item { padding: 8px 16px; font-size: 14px; color: #64748B; cursor: pointer; border-radius: 6px; transition: all 0.3s ease; display: flex; align-items: center; position: relative; margin-bottom: 4px; } .api-sidebar-nav .api-item::before { content: "•"; margin-right: 8px; color: #0049b4; opacity: 0.5; } .api-sidebar-nav .api-item:hover { background-color: rgba(0, 73, 180, 0.05); color: #1A1A2E; padding-left: 20px; } .api-sidebar-nav .api-item:hover::before { opacity: 1; } .api-sidebar-nav .api-item.active { background-color: rgba(0, 73, 180, 0.1); color: #0049b4; font-weight: 500; } .api-sidebar-nav .api-item.active::before { opacity: 1; } .api-sidebar-nav .api-item .api-name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .api-market-content { flex: 1; padding-top: 80px; padding-left: 8px; padding-right: 8px; min-height: 100vh; display: flex; flex-direction: column; } @media (max-width: 768px) { .api-market-content { padding: 24px 16px; } } .api-market-content .api-result-count { font-size: 20px; color: #000000; white-space: nowrap; } .api-market-content .api-result-count strong { color: #0049b4; font-weight: 600; } .api-mobile-toggle { display: none; position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; border: none; color: #FFFFFF; font-size: 24px; cursor: pointer; box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); z-index: 501; transition: all 0.3s ease; background-color: #0049b4; } .api-mobile-toggle:hover { transform: scale(1.05); box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2); } .api-mobile-toggle:active { transform: scale(0.95); } @media (max-width: 768px) { .api-mobile-toggle { display: flex; align-items: center; justify-content: center; } } .api-market-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; } @media (max-width: 768px) { .api-market-header { flex-direction: column; align-items: flex-start; gap: 24px; } } .api-market-title h1 { font-size: 14px; color: #64748B; font-weight: 400; margin-bottom: 4px; } .api-market-title h2 { font-size: 32px; font-weight: 700; color: #1A1A2E; } .api-market-search { position: relative; width: 300px; } @media (max-width: 768px) { .api-market-search { width: 100%; } } .api-market-search form { position: relative; display: flex; align-items: center; } .api-market-search input { flex: 1; padding: 12px 48px 12px 16px; border: 1px solid #E2E8F0; border-radius: 12px; font-size: 14px; outline: none; transition: all 0.3s ease; } .api-market-search input:focus { border-color: #0049b4; box-shadow: 0 0 0 3px rgba(0, 73, 180, 0.1); } .api-market-search input::placeholder { color: #94A3B8; } .api-market-search .search-submit-btn { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; background: transparent; border: none; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; color: #64748B; } .api-market-search .search-submit-btn:hover { background: #EFF6FF; color: #0049b4; transform: translateY(-50%) scale(1.05); } .api-market-search .search-submit-btn:active { transform: translateY(-50%) scale(0.95); } .api-market-search .search-submit-btn .search-icon { font-size: 18px; display: block; } .api-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; } @media (max-width: 1024px) { .api-card-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .api-card-grid { grid-template-columns: 1fr; } } .api-card { background: #FFFFFF; border-radius: 12px; padding: 32px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); cursor: pointer; display: flex; flex-direction: column; gap: 16px; min-height: 180px; position: relative; border: 1px solid #E2E8F0; } .api-card:active { transform: scale(0.98); } .api-card-group { display: flex; align-items: center; gap: 8px; } .api-card-group-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: #F8FAFC; border-radius: 8px; flex-shrink: 0; } .api-card-group-icon img { width: 20px; height: 20px; object-fit: contain; } .api-card-group-icon i { font-size: 16px; color: #0049b4; } .api-card-group-name { font-size: 14px; color: #64748B; font-weight: 500; } .api-card-name { font-size: 20px; font-weight: 600; color: #1A1A2E; line-height: 1.2; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-align: left; } .api-card-description { font-size: 14px; color: #64748B; line-height: 1.6; margin: 0; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-align: left; } .api-empty-state { text-align: center; padding: 80px 24px; color: #64748B; } .api-empty-state .empty-icon { font-size: 80px; margin-bottom: 24px; opacity: 0.5; } .api-empty-state h3 { font-size: 24px; font-weight: 600; color: #1A1A2E; margin-bottom: 16px; } .api-empty-state p { font-size: 16px; color: #64748B; } .api-loading { display: flex; justify-content: center; align-items: center; padding: 80px; } .api-loading .spinner { width: 48px; height: 48px; border: 4px solid #E2E8F0; border-top-color: #0049b4; border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } .api-mobile-overlay { display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.5); z-index: 499; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; } @media (max-width: 768px) { .api-mobile-overlay { display: block; } } .api-mobile-overlay.active { opacity: 1; pointer-events: auto; } .api-detail-content { display: flex; flex-direction: column; gap: 32px; } .api-detail-tabs { display: flex; gap: 8px; border-bottom: 2px solid #E2E8F0; margin-bottom: 32px; } .api-detail-tabs .tab-button { padding: 16px 24px; background: transparent; border: none; border-bottom: 3px solid transparent; font-size: 16px; font-weight: 500; color: #64748B; cursor: pointer; transition: all 0.3s ease; position: relative; bottom: -2px; } .api-detail-tabs .tab-button:hover { color: #0049b4; background-color: rgba(0, 73, 180, 0.05); } .api-detail-tabs .tab-button.active { color: #0049b4; font-weight: 600; border-bottom-color: #0049b4; } .tab-content { display: none; flex-direction: column; gap: 32px; min-height: 200px; } .tab-content.active { display: flex; } .api-overview-card { background: transparent; border-radius: 0; padding: 0; padding-bottom: 32px; display: flex; flex-direction: column; gap: 24px; } .api-overview-card .api-overview-header { display: flex; flex-direction: row; align-items: center; gap: 16px; } @media (max-width: 768px) { .api-overview-card .api-overview-header { flex-direction: column; align-items: flex-start; } } .api-overview-card .api-method-badge { background: #0049b4; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 8px 16px; height: 100%; color: #FFFFFF; font-size: 14px; font-weight: 600; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px; } .api-overview-card .api-endpoint { flex: 1; } .api-overview-card .api-endpoint code { display: block; padding: 8px 16px; background-color: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px; font-size: 18px; font-family: "Courier New", monospace; color: #1A1A2E; word-break: break-all; } .api-overview-card .api-simple-description { padding: 16px 0; border-bottom: 1px solid #E2E8F0; } .api-overview-card .api-simple-description p { font-size: 16px; color: #64748B; line-height: 1.6; margin: 0; } .api-overview-card .api-overview-info h4 { font-size: 18px; font-weight: 600; color: #1A1A2E; margin-bottom: 16px; } .api-details-grid { display: flex; flex-direction: column; gap: 24px; } .api-detail-card { background: transparent; border-radius: 0; padding: 0; padding-bottom: 32px; border-bottom: 1px solid #E2E8F0; } .api-detail-card:last-child { border-bottom: none; padding-bottom: 0; } .api-detail-card h3 { font-size: 20px; font-weight: 600; color: #1A1A2E; margin-bottom: 16px; padding-bottom: 0; border-bottom: none; } .api-detail-card .detail-content { font-size: 14px; color: #64748B; line-height: 1.6; } .api-detail-card .detail-content pre { background-color: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px; padding: 16px; overflow-x: auto; margin: 0; } .api-detail-card .detail-content pre code { font-family: "Courier New", monospace; font-size: 14px; color: #1A1A2E; white-space: pre-wrap; word-break: break-word; } .api-detail-card .detail-content table { width: 100%; border-collapse: collapse; margin: 16px 0; background-color: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 8px; overflow: hidden; } .api-detail-card .detail-content table thead { background-color: #EFF6FF; } .api-detail-card .detail-content table th { text-align: left; padding: 8px 16px; font-size: 14px; font-weight: 600; color: #1A1A2E; border-bottom: 2px solid #E2E8F0; background-color: rgba(0, 73, 180, 0.05); } .api-detail-card .detail-content table th:not(:last-child) { border-right: 1px solid #E2E8F0; } .api-detail-card .detail-content table td { padding: 8px 16px; font-size: 14px; color: #64748B; border-bottom: 1px solid #E2E8F0; } .api-detail-card .detail-content table td:not(:last-child) { border-right: 1px solid #E2E8F0; } .api-detail-card .detail-content table tr { transition: all 0.3s ease; } .api-detail-card .detail-content table tr:last-child td { border-bottom: none; } .api-detail-card .detail-content table tr:hover { background-color: rgba(0, 73, 180, 0.02); } .api-detail-card .detail-content table tbody tr:nth-child(even) { background-color: rgba(248, 250, 252, 0.3); } .api-info-table { width: 100%; border-collapse: collapse; } .api-info-table tr { border-bottom: 1px solid #E2E8F0; } .api-info-table tr:last-child { border-bottom: none; } .api-info-table th { text-align: left; padding: 8px 16px; font-size: 14px; font-weight: 600; color: #1A1A2E; width: 30%; background-color: #F8FAFC; } .api-info-table td { padding: 8px 16px; font-size: 14px; color: #64748B; } .api-info-table td code { display: inline-block; padding: 2px 8px; background-color: #F8FAFC; border-radius: 6px; font-family: "Courier New", monospace; font-size: 12px; color: #0049b4; } .login-page { display: flex; align-items: center; justify-content: center; background: #EDF9FE; padding: 40px 20px; position: relative; border-radius: 12px; margin-top: 60px; margin-bottom: 60px; } .login-container { width: 100%; max-width: 504px; margin: 0 auto; position: relative; } .login-card { background: transparent; padding: 0; display: flex; flex-direction: column; align-items: center; } @media (max-width: 576px) { .login-card { padding: 0 20px; } } .login-logo { width: 90px; height: 90px; margin-bottom: 30px; } .login-logo img { width: 100%; height: 100%; object-fit: contain; } .login-message { font-family: "Noto Sans KR", sans-serif; font-size: 20px; font-weight: 400; color: #000000; text-align: center; margin-bottom: 40px; line-height: 1; } .login-form { width: 100%; margin-bottom: 0; } .login-form .form-group { margin-bottom: 24px; } .login-form .form-group:last-of-type { margin-bottom: 0; } .login-form .form-input { width: 100%; height: 70px; padding: 0 32px; font-family: "Noto Sans KR", sans-serif; font-size: 16px; font-weight: 400; color: #5F666C; background: #FFFFFF; border: 1px solid #DDDDDD; border-radius: 12px; outline: none; transition: all 0.3s ease; } .login-form .form-input::placeholder { color: #5F666C; } .login-form .form-input:focus { border-color: #0049B4; } .login-form .form-input.error { border-color: #FF6B6B; } .login-form .form-checkbox { display: flex; align-items: center; justify-content: flex-end; gap: 7px; margin-top: 24px; margin-bottom: 22px; margin-right: 10px; } .login-form .form-checkbox input[type=checkbox] { width: 20px; height: 20px; border: 1.5px solid #000000; border-radius: 4px; cursor: pointer; appearance: none; background: #FFFFFF; position: relative; flex-shrink: 0; } .login-form .form-checkbox input[type=checkbox]:checked { background: #FFFFFF; border-color: #2C2C2C; } .login-form .form-checkbox input[type=checkbox]:checked::after { content: ""; position: absolute; left: 50%; top: 45%; transform: translate(-50%, -50%) rotate(45deg); width: 6px; height: 12px; border: solid #2C2C2C; border-width: 0 2px 2px 0; } .login-form .form-checkbox label { font-family: "Noto Sans KR", sans-serif; font-size: 16px; font-weight: 400; color: #000000; cursor: pointer; user-select: none; line-height: 24px; white-space: nowrap; } .login-button { width: 100%; height: 80px; padding: 10px; font-family: "Noto Sans KR", sans-serif; font-size: 20px; font-weight: 700; color: #FFFFFF; background: #0049B4; border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; margin-bottom: 40px; line-height: 1; } .login-button:hover { background: rgb(0, 62.6583333333, 154.5); } .login-button:active { background: rgb(0, 52.3166666667, 129); } .login-button:disabled { opacity: 0.6; cursor: not-allowed; } .login-links { display: flex; justify-content: center; align-items: center; gap: 26px; flex-wrap: wrap; } .login-links a { font-family: "Noto Sans KR", sans-serif; font-size: 16px; font-weight: 400; color: #000000; text-decoration: none; transition: color 0.3s ease; line-height: 1; } .login-links a:hover { color: #0049B4; text-decoration: underline; } .login-links .link-separator { color: #000000; font-size: 16px; } .login-alert { width: 100%; margin-bottom: 24px; padding: 12px 16px; border-radius: 8px; font-size: 14px; display: flex; align-items: center; gap: 8px; } .login-alert.alert-error { background: rgba(255, 107, 107, 0.1); color: #FF6B6B; border: 1px solid rgba(255, 107, 107, 0.2); } .login-alert.alert-success { background: rgba(107, 207, 127, 0.1); color: #6BCF7F; border: 1px solid rgba(107, 207, 127, 0.2); } .login-alert.alert-info { background: rgba(0, 73, 180, 0.1); color: #0049B4; border: 1px solid rgba(0, 73, 180, 0.2); } .login-alert i { font-size: 18px; } .login-loading { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(237, 249, 254, 0.9); display: flex; align-items: center; justify-content: center; z-index: 10; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; } .login-loading.active { opacity: 1; pointer-events: all; } .login-loading .spinner { width: 40px; height: 40px; border: 3px solid #DDDDDD; border-top-color: #0049B4; border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } @media (max-width: 768px) { .login-page { background: #ebfbff; min-height: calc(100vh - 44px); padding: 40px 20px; margin-top: 0; margin-bottom: 0; border-radius: 0; } .login-container { max-width: 100%; padding: 0; } .login-card { padding: 0; } .login-logo { width: 64px; height: 64px; margin-bottom: 20px; } .login-message { font-size: 14px; font-weight: 400; color: #212529; margin-bottom: 32px; line-height: 1.4; } .login-form .form-group { margin-bottom: 12px; } .login-form .form-input { width: 100%; height: 44px; padding: 0 16px; font-size: 14px; border-radius: 8px; border-color: #dadada; } .login-form .form-input::placeholder { font-size: 14px; color: #8c959f; } .login-form .form-checkbox { justify-content: flex-end; margin-top: 16px; margin-bottom: 20px; margin-right: 0; gap: 6px; } .login-form .form-checkbox input[type=checkbox] { width: 20px; height: 20px; border-radius: 4px; } .login-form .form-checkbox label { font-size: 13px; color: #212529; line-height: 20px; } .login-button { width: 100%; height: 44px; font-size: 16px; font-weight: 700; border-radius: 8px; margin-bottom: 24px; } .login-links { gap: 12px; } .login-links a { font-size: 14px; font-weight: 400; color: #515961; } .login-links .link-separator { font-size: 14px; color: #515961; } .login-alert { max-width: 335px; margin-bottom: 16px; padding: 10px 14px; font-size: 13px; } } .account-recovery-page { display: flex; align-items: flex-start; justify-content: center; background: transparent; padding: 0; position: relative; min-height: auto; margin: 0; } .account-recovery-container { width: 100%; max-width: 1228px; margin: 0 auto; position: relative; padding: 24px; } .account-recovery-card { background: transparent; padding: 0; display: flex; flex-direction: column; align-items: stretch; position: relative; } @media (max-width: 576px) { .account-recovery-card { padding: 0 20px; } } .account-recovery-logo { display: none; } .account-recovery-title { display: none; } .account-recovery-tabs { display: flex; gap: 0; margin-bottom: 0; width: 100%; background: transparent; border-radius: 0; padding: 0; } .account-recovery-tabs .tab-link { flex: 1; display: flex; align-items: center; justify-content: center; padding: 18px 24px; font-family: "Noto Sans KR", sans-serif; font-size: 22px; font-weight: 700; color: #8c959f; text-decoration: none; text-align: center; background: #eceff4; border-radius: 0; transition: all 0.3s ease; } .account-recovery-tabs .tab-link:first-child { border-radius: 30px 0 0 0; } .account-recovery-tabs .tab-link:last-child { border-radius: 0 30px 0 0; } .account-recovery-tabs .tab-link:hover { color: #3ba4ed; background: #e4e8ed; } .account-recovery-tabs .tab-link.active { color: #FFFFFF; background: #3ba4ed; font-weight: 700; } @media (max-width: 576px) { .account-recovery-tabs .tab-link { padding: 14px 16px; font-size: 16px; } } .account-alert { width: 100%; margin-bottom: 20px; padding: 14px 18px; border-radius: 12px; font-family: "Noto Sans KR", sans-serif; font-size: 15px; display: flex; align-items: center; gap: 10px; animation: slideDown 0.3s ease; } .account-alert i { font-size: 18px; flex-shrink: 0; } .account-alert.alert-error { background: rgba(255, 107, 107, 0.1); color: #FF6B6B; border: 1px solid rgba(255, 107, 107, 0.3); } .account-alert.alert-success { background: rgba(107, 207, 127, 0.1); color: #6BCF7F; border: 1px solid rgba(107, 207, 127, 0.3); } .account-alert.alert-info { background: rgba(0, 73, 180, 0.1); color: #0049B4; border: 1px solid rgba(0, 73, 180, 0.3); } .account-recovery-form { width: 100%; margin-bottom: 0; background: #F6F9FB; padding: 40px; border-radius: 0 0 12px 12px; } @media (max-width: 576px) { .account-recovery-form { padding: 24px 16px; } } .account-recovery-form .form-group { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; } .account-recovery-form .form-group:last-of-type { margin-bottom: 0; } @media (max-width: 768px) { .account-recovery-form .form-group { flex-direction: column; align-items: stretch; gap: 10px; } } .account-recovery-form .form-label { display: flex; align-items: center; flex-shrink: 0; width: 170px; font-family: "Noto Sans KR", sans-serif; font-size: 20px; font-weight: 400; color: #212529; margin-bottom: 0; } .account-recovery-form .form-label .required { color: #ed5b5b; margin-left: 2px; } @media (max-width: 768px) { .account-recovery-form .form-label { width: 100%; font-size: 16px; } } .account-recovery-form .form-input { flex: 1; height: 60px; padding: 0 20px; font-family: "Noto Sans KR", sans-serif; font-size: 20px; font-weight: 400; color: #212529; background: #FFFFFF; border: 1px solid #dadada; border-radius: 12px; outline: none; transition: all 0.3s ease; } .account-recovery-form .form-input::placeholder { color: #dadada; } .account-recovery-form .form-input:hover { border-color: #3ba4ed; } .account-recovery-form .form-input:focus { border-color: #3ba4ed; box-shadow: 0 0 0 2px rgba(59, 164, 237, 0.1); } .account-recovery-form .form-input:disabled { background: #F8F9FA; border-color: #E2E8F0; color: #94A3B8; cursor: not-allowed; } .account-recovery-form .form-input.error { border-color: #ed5b5b; } .account-recovery-form .form-select { height: 60px; padding: 0 40px 0 20px; font-family: "Noto Sans KR", sans-serif; font-size: 20px; font-weight: 400; color: #515151; background: #FFFFFF; border: 1px solid #dadada; border-radius: 12px; outline: none; cursor: pointer; transition: all 0.3s ease; appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5' viewBox='0 0 10 5'%3E%3Cpath fill='%231D1B20' d='M5 5L0 0h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 10px 5px; } .account-recovery-form .form-select:hover { border-color: #3ba4ed; } .account-recovery-form .form-select:focus { border-color: #3ba4ed; box-shadow: 0 0 0 2px rgba(59, 164, 237, 0.1); } .account-recovery-form .form-select:disabled { background-color: #F8F9FA; border-color: #E2E8F0; color: #94A3B8; cursor: not-allowed; opacity: 0.7; } .account-recovery-form .form-select option { padding: 12px; font-size: 16px; } .phone-input-group { display: flex; align-items: center; gap: 14px; flex: 1; } .phone-input-group .phone-prefix { width: 180px; flex-shrink: 0; } .phone-input-group .phone-middle, .phone-input-group .phone-last { width: 180px; flex-shrink: 0; } .phone-input-group .phone-separator { display: flex; align-items: center; justify-content: center; width: 14px; height: 1px; background: #515151; flex-shrink: 0; } @media (max-width: 768px) { .phone-input-group { flex-wrap: wrap; gap: 10px; } .phone-input-group .phone-prefix, .phone-input-group .phone-middle, .phone-input-group .phone-last { width: calc(33% - 20px); min-width: 80px; } .phone-input-group .phone-separator { width: 10px; } } @media (max-width: 576px) { .phone-input-group .phone-prefix, .phone-input-group .phone-middle, .phone-input-group .phone-last { width: 100%; } .phone-input-group .phone-separator { display: none; } } .auth-number-group { margin-top: 0; } .auth-input-group { position: relative; display: flex; align-items: center; flex: 1; } .auth-input-group .auth-input { flex: 1; padding-right: 80px; } .auth-input-group .auth-timer { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-family: "Noto Sans KR", sans-serif; font-size: 20px; font-weight: 400; color: #ed5b5b; pointer-events: none; } @media (max-width: 576px) { .auth-input-group .auth-timer { font-size: 16px; right: 16px; } } .auth-request-button, .auth-verify-button { width: 172px; height: 60px; padding: 10px; font-family: "Noto Sans KR", sans-serif; font-size: 18px; font-weight: 700; color: #FFFFFF; background: #a4d6ea; border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; margin: 0; flex-shrink: 0; line-height: 1; } .auth-request-button:hover, .auth-verify-button:hover { background: rgb(143.28125, 204.6651785714, 229.21875); } .auth-request-button:active, .auth-verify-button:active { background: rgb(122.5625, 195.3303571429, 224.4375); } .auth-request-button:disabled, .auth-verify-button:disabled { opacity: 0.6; cursor: not-allowed; } @media (max-width: 576px) { .auth-request-button, .auth-verify-button { width: 100%; height: 50px; font-size: 16px; margin-top: 10px; } } .account-recovery-card .form-actions, .account-recovery-card .form-actions-center { display: flex; justify-content: center; gap: 20px; margin-top: 40px; padding: 40px 0; border-top: none; background: transparent; } .account-recovery-card .form-actions .cancel-button, .account-recovery-card .form-actions-center .cancel-button, .account-recovery-card .form-actions .submit-button, .account-recovery-card .form-actions-center .submit-button { width: 200px; height: 60px; padding: 10px; font-family: "Noto Sans KR", sans-serif; font-size: 18px; font-weight: 700; border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; line-height: 1; display: flex; align-items: center; justify-content: center; text-decoration: none; } .account-recovery-card .form-actions .cancel-button, .account-recovery-card .form-actions-center .cancel-button { color: #5f666c; background: #e5e7eb; } .account-recovery-card .form-actions .cancel-button:hover, .account-recovery-card .form-actions-center .cancel-button:hover { background: rgb(214.5869565217, 217.6956521739, 223.9130434783); } .account-recovery-card .form-actions .cancel-button:active, .account-recovery-card .form-actions-center .cancel-button:active { background: rgb(200.1739130435, 204.3913043478, 212.8260869565); } .account-recovery-card .form-actions .submit-button, .account-recovery-card .form-actions-center .submit-button { color: #FFFFFF; background: #0049B4; } .account-recovery-card .form-actions .submit-button:hover, .account-recovery-card .form-actions-center .submit-button:hover { background: rgb(0, 62.6583333333, 154.5); } .account-recovery-card .form-actions .submit-button:active, .account-recovery-card .form-actions-center .submit-button:active { background: rgb(0, 52.3166666667, 129); } .account-recovery-card .form-actions .submit-button:disabled, .account-recovery-card .form-actions-center .submit-button:disabled { opacity: 0.6; cursor: not-allowed; } @media (max-width: 576px) { .account-recovery-card .form-actions, .account-recovery-card .form-actions-center { flex-direction: column; gap: 12px; padding: 24px 0; } .account-recovery-card .form-actions .cancel-button, .account-recovery-card .form-actions-center .cancel-button, .account-recovery-card .form-actions .submit-button, .account-recovery-card .form-actions-center .submit-button { width: 100%; height: 50px; font-size: 16px; } } .loading-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(237, 249, 254, 0.9); display: none; align-items: center; justify-content: center; z-index: 1000; transition: opacity 0.3s ease; } .loading-overlay.active { display: flex; } .loading-overlay .spinner { width: 40px; height: 40px; border: 3px solid #DDDDDD; border-top-color: #0049B4; border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 768px) { .account-recovery-page { padding: 20px 12px; margin-top: 40px; margin-bottom: 40px; } .account-recovery-container { max-width: 100%; } } .account-recovery-result { width: 100%; background: #F6F9FB; padding: 60px 40px; border-radius: 0 0 12px 12px; text-align: center; } @media (max-width: 576px) { .account-recovery-result { padding: 40px 20px; } } .account-recovery-result .result-header { margin-bottom: 40px; } .account-recovery-result .result-header .result-icon { font-size: 60px; color: #6BCF7F; margin-bottom: 20px; display: block; } @media (max-width: 576px) { .account-recovery-result .result-header .result-icon { font-size: 48px; } } .account-recovery-result .result-header .result-title { font-family: "Noto Sans KR", sans-serif; font-size: 24px; font-weight: 700; color: #212529; margin-bottom: 12px; } @media (max-width: 576px) { .account-recovery-result .result-header .result-title { font-size: 20px; } } .account-recovery-result .result-header .result-description { font-family: "Noto Sans KR", sans-serif; font-size: 16px; font-weight: 400; color: #5f666c; margin: 0; } .account-recovery-result .result-header .result-description strong { color: #0049B4; font-weight: 700; } @media (max-width: 576px) { .account-recovery-result .result-header .result-description { font-size: 14px; } } .found-users-list { max-width: 600px; margin: 0 auto 40px; } .found-users-list .found-user-item { background: #FFFFFF; border: 1px solid #dadada; border-radius: 12px; padding: 20px 24px; margin-bottom: 12px; transition: all 0.3s ease; } .found-users-list .found-user-item:last-child { margin-bottom: 0; } .found-users-list .found-user-item:hover { border-color: #3ba4ed; box-shadow: 0 2px 8px rgba(59, 164, 237, 0.15); } .found-users-list .found-user-item .user-info { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; } @media (max-width: 576px) { .found-users-list .found-user-item .user-info { flex-direction: column; gap: 6px; } } .found-users-list .found-user-item .user-email { font-family: "Noto Sans KR", sans-serif; font-size: 20px; font-weight: 700; color: #212529; } @media (max-width: 576px) { .found-users-list .found-user-item .user-email { font-size: 18px; } } .found-users-list .found-user-item .user-date { font-family: "Noto Sans KR", sans-serif; font-size: 16px; font-weight: 400; color: #8c959f; } @media (max-width: 576px) { .found-users-list .found-user-item .user-date { font-size: 14px; } } .result-info-box { max-width: 600px; margin: 0 auto; background: rgba(0, 73, 180, 0.05); border: 1px solid rgba(0, 73, 180, 0.2); border-radius: 12px; padding: 16px 24px; } .result-info-box .info-text { font-family: "Noto Sans KR", sans-serif; font-size: 15px; font-weight: 400; color: #5f666c; margin: 0; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; } .result-info-box .info-text i { color: #0049B4; font-size: 16px; } .result-info-box .info-text .info-link { color: #0049B4; font-weight: 700; text-decoration: underline; transition: color 0.3s ease; } .result-info-box .info-text .info-link:hover { color: rgb(0, 52.3166666667, 129); } @media (max-width: 576px) { .result-info-box .info-text { font-size: 14px; text-align: center; } } @media (max-width: 768px) { .account-recovery-page { padding: 0; margin: 0; } .account-recovery-container { padding: 20px; } .account-recovery-card { padding: 0; } .account-recovery-tabs .tab-link { height: 40px; padding: 10px 16px; font-size: 14px; font-weight: 700; } .account-recovery-tabs .tab-link:first-child { border-radius: 8px 0 0 0; } .account-recovery-tabs .tab-link:last-child { border-radius: 0 8px 0 0; } .account-recovery-form { padding: 20px; border-radius: 0 0 8px 8px; } .account-recovery-form .form-group { flex-direction: column; align-items: stretch; gap: 8px; margin-bottom: 16px; } .account-recovery-form .form-label { width: 100%; font-size: 14px; font-weight: 500; margin-bottom: 0; } .account-recovery-form .form-input { flex: none; width: 100%; height: 40px; padding: 0 16px; font-size: 12px; border-radius: 8px; } .account-recovery-form .form-input::placeholder { color: #8c959f; } .account-recovery-form .form-select { height: 40px; padding: 0 32px 0 12px; font-size: 12px; border-radius: 8px; background-position: right 10px center; } .phone-input-group { flex-wrap: wrap; gap: 8px; align-items: center; width: 100%; } .phone-input-group .phone-prefix { flex: 1; min-width: 0; width: auto; } .phone-input-group .phone-middle, .phone-input-group .phone-last { flex: 1; min-width: 0; width: auto; } .phone-input-group .phone-separator { display: flex; width: auto; height: auto; background: transparent; font-size: 12px; color: #000; } .phone-input-group .phone-separator::before { content: "-"; } .auth-input-group { width: 100%; } .auth-input-group .auth-input { width: 100%; padding-right: 60px; } .auth-input-group .auth-timer { font-size: 12px; right: 12px; } .auth-request-button, .auth-verify-button { width: 100%; height: 40px; padding: 10px; font-size: 14px; font-weight: 700; border-radius: 8px; margin-top: 8px; } .account-recovery-card .form-actions, .account-recovery-card .form-actions-center { flex-direction: row; gap: 21px; margin-top: 24px; padding: 24px 0; } .account-recovery-card .form-actions .cancel-button, .account-recovery-card .form-actions-center .cancel-button, .account-recovery-card .form-actions .submit-button, .account-recovery-card .form-actions-center .submit-button { flex: 1; min-width: 144px; height: 40px; font-size: 14px; font-weight: 700; border-radius: 8px; } .account-recovery-card .form-actions .cancel-button, .account-recovery-card .form-actions-center .cancel-button { background: #e5e7eb; color: #5f666c; } .account-recovery-card .form-actions .submit-button, .account-recovery-card .form-actions-center .submit-button { background: #0049b4; color: #ffffff; } .account-recovery-result { padding: 30px 20px; border-radius: 0 0 8px 8px; } .account-recovery-result .result-header { margin-bottom: 24px; } .account-recovery-result .result-header .result-icon { font-size: 40px; margin-bottom: 16px; } .account-recovery-result .result-header .result-title { font-size: 18px; margin-bottom: 8px; } .account-recovery-result .result-header .result-description { font-size: 14px; } .found-users-list { margin-bottom: 24px; } .found-users-list .found-user-item { padding: 16px; border-radius: 8px; margin-bottom: 8px; } .found-users-list .found-user-item .user-email { font-size: 16px; } .found-users-list .found-user-item .user-date { font-size: 12px; } .result-info-box { border-radius: 8px; padding: 12px 16px; } .result-info-box .info-text { font-size: 12px; } } .signup-selection-page { min-height: calc(100vh - 140px); display: flex; align-items: center; justify-content: center; background: #EDF9FE; padding: 60px 20px; position: relative; border-radius: 12px; margin-top: 60px; margin-bottom: 60px; } .signup-selection-container { width: 100%; max-width: 1018px; margin: 0 auto; position: relative; } .signup-selection-card { background: transparent; padding: 0; display: flex; flex-direction: column; align-items: center; } @media (max-width: 576px) { .signup-selection-card { padding: 0 20px; } } .signup-logo { width: 90px; height: 90px; margin-bottom: 30px; } .signup-logo img { width: 100%; height: 100%; object-fit: contain; } .signup-message { font-family: "Noto Sans KR", sans-serif; font-size: 20px; font-weight: 400; color: #000000; text-align: center; margin-bottom: 40px; line-height: 1; } .signup-buttons { width: 100%; max-width: 504px; display: flex; flex-direction: column; gap: 40px; margin-bottom: 60px; } .signup-btn { width: 100%; height: 80px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 10px; font-family: "Noto Sans KR", sans-serif; font-size: 20px; font-weight: 700; color: #FFFFFF; text-decoration: none; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; line-height: 1; position: relative; } .signup-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); } .signup-btn:active { transform: translateY(0); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); } .signup-btn .signup-btn-icon { width: 26px; height: 30px; flex-shrink: 0; } .signup-btn span { white-space: nowrap; } .signup-btn-individual { background: #0049B4; } .signup-btn-organization { background: #00A1D7; } .signup-navigation { display: flex; justify-content: center; align-items: center; gap: 26px; flex-wrap: wrap; } .signup-navigation .signup-nav-link { font-family: "Noto Sans KR", sans-serif; font-size: 16px; font-weight: 400; color: #000000; text-decoration: none; transition: color 0.3s ease; line-height: 1; } .signup-navigation .signup-nav-link:hover { color: #0049B4; text-decoration: underline; } .signup-navigation .signup-nav-separator { color: #000000; font-size: 16px; line-height: 1; } @media (max-width: 768px) { .signup-selection-page { background: #ebfbff; min-height: calc(100vh - 44px); padding: 40px 20px; margin-top: 0; margin-bottom: 0; border-radius: 0; } .signup-selection-container { max-width: 100%; padding: 0; } .signup-selection-card { padding: 0; } .signup-logo { width: 64px; height: 64px; margin-bottom: 24px; } .signup-message { font-size: 14px; font-weight: 400; color: #212529; margin-bottom: 80px; line-height: 26px; } .signup-buttons { max-width: 335px; gap: 24px; margin-bottom: 80px; } .signup-btn { height: 44px; font-size: 16px; font-weight: 700; border-radius: 8px; padding: 8px 12px; justify-content: center; gap: 8px; } .signup-btn svg { width: 14px; height: 16px; flex-shrink: 0; } .signup-btn span { text-align: center; } .signup-btn:hover { transform: none; box-shadow: none; opacity: 0.9; } .signup-navigation { gap: 12px; } .signup-navigation .signup-nav-link { font-size: 14px; font-weight: 400; color: #515961; } .signup-navigation .signup-nav-separator { font-size: 14px; color: #515961; } } .corporate-transfer-section { margin-top: 40px; padding-top: 24px; } .corporate-transfer-section .btn-block { width: 100%; } .register-title-bar { padding: 18px 45px; display: flex; align-items: baseline; gap: 16px; } @media (max-width: 1024px) { .register-title-bar { flex-direction: column; gap: 8px; padding: 14px 20px; } } .register-title-bar .register-title { font-size: 28px; font-weight: 700; color: #1A1A2E; margin: 0; } @media (max-width: 1024px) { .register-title-bar .register-title { font-size: 22px; } } .register-title-bar .register-subtitle { font-size: 16px; font-weight: 400; color: #515151; } @media (max-width: 1024px) { .register-title-bar .register-subtitle { font-size: 14px; } } .register-progress { display: flex; justify-content: center; margin-bottom: 40px; } .progress-steps { display: flex; align-items: flex-start; gap: 50px; } .step-dots { display: flex; gap: 6px; } .step-dots span { width: 6px; height: 6px; border-radius: 50%; background-color: #dadada; } @media (max-width: 1024px) { .step-dots { display: none; } } .progress-step-item { display: flex; flex-direction: column; align-items: center; gap: 8px; } .progress-step-item .step-icon-wrapper { padding: 10px; } .progress-step-item .step-icon { width: 62px; height: 62px; border-radius: 50%; background-color: #e6e6e6; display: flex; align-items: center; justify-content: center; color: #999; } .progress-step-item.active .step-icon { background-color: #0049b4; color: #FFFFFF; } .progress-step-item .step-label { font-size: 14px; font-weight: 400; color: #dadada; text-align: center; white-space: nowrap; } .progress-step-item.active .step-label { font-weight: 700; color: #0049b4; } .register-form-container { padding: 50px 45px; } @media (max-width: 1024px) { .register-form-container { padding: 30px 20px; } } .register-form-container.with-sidebar { display: flex; gap: 0; padding: 28px; min-height: 600px; } @media (max-width: 768px) { .register-form-container.with-sidebar { flex-direction: column; } } .register-form-container .form-input { width: 100%; height: 60px; padding: 0 20px; border: 1px solid #dadada; border-radius: 12px; background-color: #FFFFFF; font-size: 20px; color: #1A1A2E; outline: none; transition: border-color 0.2s ease; } .register-form-container .form-input::placeholder { color: #dadada; } .register-form-container .form-input:focus { border-color: #0049b4; } @media (max-width: 1024px) { .register-form-container .form-input { height: 50px; font-size: 16px; } } .register-form-container .form-textarea { width: 100%; min-height: 190px; padding: 18px 20px; border: 1px solid #dadada; border-radius: 12px; background-color: #FFFFFF; font-size: 20px; color: #1A1A2E; outline: none; resize: vertical; transition: border-color 0.2s ease; } .register-form-container .form-textarea::placeholder { color: #dadada; } .register-form-container .form-textarea:focus { border-color: #0049b4; } @media (max-width: 1024px) { .register-form-container .form-textarea { min-height: 140px; font-size: 16px; } } .icon-upload-box { background-color: #FFFFFF; border: 1px solid #dadada; border-radius: 12px; padding: 50px 40px; display: flex; flex-direction: column; align-items: center; gap: 26px; } @media (max-width: 1024px) { .icon-upload-box { padding: 30px 20px; } } .icon-preview-area { width: 100px; height: 100px; position: relative; } .icon-preview-area img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; } .icon-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; border-radius: 8px; color: #999; } .icon-upload-box .btn-remove-icon { position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; border-radius: 50%; background-color: #dc3545; color: #FFFFFF; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background-color 0.2s ease; } .icon-upload-box .btn-remove-icon:hover { background-color: #c82333; } .icon-upload-info { text-align: center; } .icon-upload-info .upload-title { font-size: 16px; font-weight: 700; color: #515961; margin: 0 0 11px; } .icon-upload-info .upload-hint { font-size: 14px; font-weight: 400; color: #515961; margin: 0; } .icon-upload-info .upload-hint strong { font-weight: 700; } .ip-input-row { display: flex; gap: 21px; } .ip-input-row .ip-input { flex: 1; } @media (max-width: 1024px) { .ip-input-row { flex-direction: column; gap: 12px; } } .btn-add-ip { width: 158px; height: 60px; background-color: #3ba4ed; color: #FFFFFF; border: none; border-radius: 12px; font-size: 20px; font-weight: 700; cursor: pointer; transition: background-color 0.2s ease; flex-shrink: 0; } .btn-add-ip:hover { background-color: #2b94dd; } @media (max-width: 1024px) { .btn-add-ip { width: 100%; font-size: 16px; height: 50px; } } .register-form-container .ip-list { margin-top: 20px; border: none; background: transparent; } .register-form-container .ip-list .ip-items { display: flex; flex-direction: column; gap: 10px; max-height: none; } .register-form-container .ip-list .ip-item { display: flex; gap: 21px; padding: 0; border-bottom: none; } .register-form-container .ip-list .ip-item:hover { background: transparent; } @media (max-width: 1024px) { .register-form-container .ip-list .ip-item { flex-direction: column; gap: 12px; } } .register-form-container .ip-list .ip-item .ip-display { flex: 1; height: 60px; padding: 0 20px; border: 1px solid #dadada; border-radius: 8px; background-color: #FFFFFF; display: flex; align-items: center; font-size: 20px; color: #1A1A2E; } .register-form-container .ip-list .ip-item .btn-remove-ip { width: 158px !important; height: 60px !important; background-color: #e5e7eb !important; color: #5f666c !important; border: none !important; border-radius: 12px !important; font-size: 20px !important; font-weight: 700; cursor: pointer; transition: background-color 0.2s ease; flex-shrink: 0; display: flex !important; align-items: center; justify-content: center; } @media (max-width: 1024px) { .register-form-container .ip-list .ip-item .btn-remove-ip { width: 100% !important; font-size: 16px !important; height: 50px !important; } } .apikey-register-container { padding: 40px 24px; } @media (max-width: 768px) { .apikey-register-container { padding: 24px 16px; } } .apikey-register-container.with-sidebar { display: flex; min-height: calc(100vh - 200px); position: relative; padding: 0; } .register-progress { margin-bottom: 48px; padding: 0 24px; } .register-progress .progress-steps { display: flex; align-items: center; justify-content: center; position: relative; } .register-progress .progress-step { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; } .register-progress .progress-step .step-number { width: 40px; height: 40px; border-radius: 50%; background: #FFFFFF; border: 2px solid #E2E8F0; display: flex; align-items: center; justify-content: center; font-weight: 600; color: #64748B; transition: all 0.3s ease; margin-bottom: 8px; } .register-progress .progress-step .step-label { font-size: 14px; color: #64748B; white-space: nowrap; } .register-progress .progress-step.active .step-number { background: #0049b4; border-color: #0049b4; color: #FFFFFF; box-shadow: 0 0 0 4px rgba(0, 73, 180, 0.1); } .register-progress .progress-step.active .step-label { color: #0049b4; font-weight: 500; } .register-progress .progress-step.completed .step-number { background: #6BCF7F; border-color: #6BCF7F; color: #FFFFFF; } .register-progress .progress-step.completed .step-label { color: #1A1A2E; } .register-progress .progress-line { flex: 1; height: 2px; background: #E2E8F0; margin: 0 16px; margin-bottom: 28px; position: relative; } .register-progress .progress-line.filled { background: #6BCF7F; } .register-header { text-align: center; margin-bottom: 48px; padding: 0 24px; } .register-header h1 { font-size: 32px; font-weight: 700; color: #1A1A2E; margin-bottom: 8px; } .register-header h2 { font-size: 24px; font-weight: 600; color: #0049b4; margin-bottom: 16px; } .register-header .header-description { font-size: 16px; color: #64748B; max-width: 600px; margin: 0 auto; } .apikey-register-sidebar { width: 254px; background-color: #eceff4; border-radius: 12px; padding: 23px 12px; position: sticky; top: 0; height: fit-content; max-height: calc(100vh - 100px); overflow-y: auto; flex-shrink: 0; } @media (max-width: 1024px) { .apikey-register-sidebar { width: 240px; } } @media (max-width: 768px) { .apikey-register-sidebar { position: fixed; left: 0; top: 60px; transform: translateX(-100%); transition: transform 0.3s ease; box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); z-index: 500; height: calc(100vh - 60px); max-height: none; margin: 0; border-radius: 0; } .apikey-register-sidebar.mobile-open { transform: translateX(0); } } .apikey-sidebar-nav .sidebar-title { font-size: 20px; font-weight: 700; color: #212529; text-align: center; padding: 20px 14px 45px; } .apikey-sidebar-nav .menu-section { margin-bottom: 0; border-bottom: 1px solid #dadada; } .apikey-sidebar-nav .menu-section:last-child { border-bottom: none; } .apikey-sidebar-nav .menu-title { padding: 22px 14px; font-size: 20px; font-weight: 400; color: #212529; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: space-between; gap: 10px; } .apikey-sidebar-nav .menu-title:hover { background-color: rgba(0, 0, 0, 0.02); } .apikey-sidebar-nav .menu-title.active { font-weight: 700; color: #212529; } .apikey-sidebar-nav .menu-title .menu-icon { width: 20px; height: 20px; flex-shrink: 0; } .apikey-sidebar-nav .menu-title .menu-icon img { width: 100%; height: 100%; object-fit: contain; } .apikey-sidebar-nav .menu-title .menu-text { flex: 1; } .apikey-sidebar-nav .menu-title .api-count { width: 8px; height: 8px; padding: 0; min-width: auto; background-color: #dadada; border-radius: 50%; font-size: 0; flex-shrink: 0; } .apikey-sidebar-nav .menu-title.active .api-count { background-color: #3ba4ed; } .apikey-register-content { flex: 1; padding: 23px 30px; min-height: auto; display: flex; flex-direction: column; } .apikey-register-content .api-result-count { font-size: 16px; color: #64748B; margin-bottom: 32px; } .apikey-register-content .api-result-count strong { color: #0049b4; font-weight: 600; } @media (max-width: 768px) { .apikey-register-content { padding: 24px 16px; } } .apikey-mobile-toggle { display: none; position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; border: none; color: #FFFFFF; font-size: 24px; cursor: pointer; box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); z-index: 501; transition: all 0.3s ease; } .apikey-mobile-toggle:hover { transform: scale(1.05); box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2); } .apikey-mobile-toggle:active { transform: scale(0.95); } @media (max-width: 768px) { .apikey-mobile-toggle { display: flex; align-items: center; justify-content: center; } } .apikey-mobile-overlay { display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.5); z-index: 499; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; } @media (max-width: 768px) { .apikey-mobile-overlay { display: block; } } .apikey-mobile-overlay.active { opacity: 1; pointer-events: auto; } .api-filter-header { display: flex; justify-content: flex-end; align-items: center; margin-bottom: 32px; gap: 16px; } @media (max-width: 768px) { .api-filter-header { justify-content: stretch; } } .api-search-box { position: relative; width: 228px; height: 44px; flex-shrink: 0; margin-left: auto; } @media (max-width: 768px) { .api-search-box { width: 100%; margin-left: 0; } } .api-search-box .search-input { width: 100%; height: 100%; padding: 0 44px 0 17px; border: 1px solid #dadada; border-radius: 12px; background-color: #FFFFFF; font-size: 14px; font-family: inherit; outline: none; transition: all 0.3s ease; } .api-search-box .search-input:focus { border-color: #0049b4; box-shadow: 0 0 0 3px rgba(0, 73, 180, 0.1); } .api-search-box .search-input::placeholder { color: #8c959f; } .api-search-box svg { position: absolute; right: 17px; top: 50%; transform: translateY(-50%); pointer-events: none; } .selection-counter { font-size: 16px; color: #64748B; white-space: nowrap; } .selection-counter .counter-value { font-weight: 600; color: #0049b4; } .api-filter-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 24px; } @media (max-width: 768px) { .api-filter-header { flex-direction: column; align-items: stretch; gap: 16px; } } .api-filter-header .select-all-wrapper { display: flex; align-items: center; flex: 1; } @media (max-width: 768px) { .api-filter-header .select-all-wrapper { order: 2; } } .api-filter-header .select-all-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 16px; color: #1A1A2E; user-select: none; } .api-filter-header .select-all-label:hover { color: #0049b4; } .api-filter-header .select-all-checkbox { width: 18px; height: 18px; cursor: pointer; accent-color: #0049b4; } .api-filter-header .select-all-checkbox:indeterminate { opacity: 0.6; } @media (max-width: 768px) { .api-filter-header .api-search-box { order: 1; } } .api-selection-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; } @media (max-width: 1024px) { .api-selection-card-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } } @media (max-width: 768px) { .api-selection-card-grid { grid-template-columns: 1fr; gap: 16px; } } .custom-checkbox { display: inline-block; width: 22px; height: 22px; flex-shrink: 0; cursor: pointer; background-image: url("/img/checkbox-unchecked.svg"); background-size: contain; background-repeat: no-repeat; background-position: center; border-radius: 50%; } input[type=checkbox]:checked + .custom-checkbox { background-color: #0049B4; background-image: url("/img/checkbox-checked.svg"); } .select-all-label .custom-checkbox { margin-right: 8px; } .api-selection-card { background: #FFFFFF; border: 1px solid #dadada; border-radius: 12px; transition: all 0.3s ease; cursor: pointer; position: relative; } .api-selection-card:hover { border-color: #0049b4; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .api-selection-card.selected { border-color: #0049b4; background-color: rgba(0, 73, 180, 0.02); } .api-selection-card .api-card-content { display: flex; flex-direction: column; gap: 14px; padding: 26px 28px; cursor: pointer; } .api-selection-card .api-card-content .api-card-header { display: flex; justify-content: space-between; align-items: center; gap: 13px; } .api-selection-card .api-card-content .api-card-header .api-card-category { font-size: 14px; font-weight: 400; color: #6e7780; flex: 1; } .api-selection-card .api-card-content .api-card-header .checkbox-wrapper { flex-shrink: 0; } .api-selection-card .api-card-content .api-card-header .checkbox-wrapper .api-checkbox { width: 22px; height: 22px; cursor: pointer; accent-color: #0049b4; } .api-selection-card .api-card-content .api-name { font-size: 18px; font-weight: 700; color: #212529; margin: 0; line-height: 1; } .api-selection-card .api-card-content .api-description { font-size: 15px; font-weight: 400; color: #515961; margin: 0; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .api-selection-card .api-card-content .api-card-icon { display: flex; justify-content: flex-end; margin-top: auto; } .api-selection-card .api-card-content .api-card-icon img { width: 50px; height: 50px; object-fit: contain; } .api-selection-card .api-card-content .api-card-icon i { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: #999; } .selected-summary { background: #EFF6FF; border-radius: 12px; padding: 24px; margin-bottom: 32px; } .selected-summary h3 { font-size: 18px; font-weight: 600; color: #1A1A2E; margin-bottom: 16px; } .selected-summary .selected-list { display: flex; flex-wrap: wrap; gap: 8px; } .selected-summary .selected-list .selected-chip { display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; background: #FFFFFF; border: 1px solid #0049b4; border-radius: 50px; font-size: 14px; color: #0049b4; } .selected-summary .selected-list .selected-chip .remove-chip { background: none; border: none; color: #0049b4; font-size: 18px; cursor: pointer; padding: 0; margin-left: 4px; } .selected-summary .selected-list .selected-chip .remove-chip:hover { color: #FF6B6B; } .empty-api-state { padding: 48px; } .loading-state { padding: 48px; text-align: center; color: #64748B; } .loading-state .loading-spinner { width: 48px; height: 48px; margin: 0 auto 24px; border: 4px solid #E2E8F0; border-top-color: #0049b4; border-radius: 50%; animation: spin 1s linear infinite; } .loading-state p { font-size: 16px; color: #64748B; } @keyframes spin { to { transform: rotate(360deg); } } .register-form { width: 100%; max-width: 1021px; margin: 0 auto; } .register-form .form-card { background: #FFFFFF; border-radius: 12px; padding: 40px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); margin-bottom: 32px; } .register-form .form-group { margin-bottom: 32px; } .register-form .form-group:last-child { margin-bottom: 0; } .register-form .form-label { display: block; font-size: 14px; font-weight: 600; color: #1A1A2E; margin-bottom: 8px; } .register-form .form-label.required .required-mark { color: #FF6B6B; margin-left: 4px; } .register-form .form-input, .register-form .form-select, .register-form .form-textarea { width: 100%; padding: 12px 16px; border: 1px solid #E2E8F0; border-radius: 8px; font-size: 16px; transition: all 0.3s ease; background: #FFFFFF; } .register-form .form-input:focus, .register-form .form-select:focus, .register-form .form-textarea:focus { outline: none; border-color: #0049b4; box-shadow: 0 0 0 3px rgba(0, 73, 180, 0.1); } .register-form .form-input::placeholder, .register-form .form-select::placeholder, .register-form .form-textarea::placeholder { color: #94A3B8; } .register-form .form-input:disabled, .register-form .form-select:disabled, .register-form .form-textarea:disabled { background-color: #E2E8F0; } .register-form .form-textarea { resize: vertical; min-height: 100px; font-family: inherit; } .register-form .form-hint { display: block; font-size: 12px; color: #64748B; margin-top: 4px; } .register-form .form-hint .char-counter { float: right; color: #94A3B8; } .register-form .radio-group { display: flex; gap: 24px; flex-wrap: wrap; } .register-form .radio-group .radio-label { display: flex; align-items: center; cursor: pointer; } .register-form .radio-group .radio-label input[type=radio] { margin-right: 8px; } .register-form .radio-group .radio-label .radio-text { font-size: 16px; color: #1A1A2E; } .register-form .icon-upload-wrapper { display: flex; align-items: center; gap: 24px; } .register-form .icon-upload-wrapper .icon-preview { width: 120px; height: 120px; border: 2px dashed #E2E8F0; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: #F8FAFC; overflow: hidden; position: relative; transition: all 0.3s ease; } .register-form .icon-upload-wrapper .icon-preview:hover { border-color: #0049b4; background: rgba(0, 73, 180, 0.05); } .register-form .icon-upload-wrapper .icon-preview .icon-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #64748B; text-align: center; padding: 16px; } .register-form .icon-upload-wrapper .icon-preview .icon-placeholder svg { opacity: 0.5; } .register-form .icon-upload-wrapper .icon-preview .icon-placeholder span { font-size: 12px; font-weight: 500; } .register-form .icon-upload-wrapper .icon-preview img { width: 100%; height: 100%; object-fit: cover; } .register-form .icon-upload-wrapper .icon-preview .btn-remove-icon { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; padding: 0; background: rgba(255, 255, 255, 0.95); border: 1px solid #E2E8F0; border-radius: 50%; color: #64748B; cursor: pointer; transition: all 0.3s ease; display: none; align-items: center; justify-content: center; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); z-index: 10; } .register-form .icon-upload-wrapper .icon-preview .btn-remove-icon svg { width: 14px; height: 14px; } .register-form .icon-upload-wrapper .icon-preview .btn-remove-icon:hover { background: #FF6B6B; border-color: #FF6B6B; color: #FFFFFF; transform: scale(1.1); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .register-form .icon-upload-wrapper .icon-preview .btn-remove-icon:active { transform: scale(0.95); } .register-form .icon-upload-wrapper .icon-input { display: none; } .register-form .icon-upload-wrapper .btn-icon-select { padding: 10px 20px; background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 8px; font-size: 14px; font-weight: 500; color: #1A1A2E; cursor: pointer; transition: all 0.3s ease; } .register-form .icon-upload-wrapper .btn-icon-select:hover { background: #0049b4; border-color: #0049b4; color: #FFFFFF; } .register-form .icon-upload-wrapper .btn-icon-select:active { transform: scale(0.98); } .register-form .ip-input-group { display: flex; gap: 8px; margin-bottom: 16px; } .register-form .ip-input-group .form-input { flex: 1; } .register-form .ip-input-group .btn-add-ip { display: inline-flex; align-items: center; gap: 4px; padding: 10px 16px; background: #0049b4; border: none; border-radius: 8px; color: #FFFFFF; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; } .register-form .ip-input-group .btn-add-ip svg { flex-shrink: 0; } .register-form .ip-input-group .btn-add-ip:hover { background: #c3dfea; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .register-form .ip-input-group .btn-add-ip:active { transform: translateY(0); } .register-form .ip-list { margin-top: 16px; overflow: hidden; } .register-form .ip-list .ip-list-header { padding: 16px; background: #F8FAFC; border-bottom: 1px solid #E2E8F0; } .register-form .ip-list .ip-list-header .ip-count { font-size: 14px; color: #64748B; } .register-form .ip-list .ip-list-header .ip-count strong { color: #0049b4; font-weight: 600; } .register-form .ip-list .ip-items { max-height: 240px; overflow-y: auto; } .register-form .ip-list .ip-items::-webkit-scrollbar { width: 6px; } .register-form .ip-list .ip-items::-webkit-scrollbar-track { background: #F8FAFC; } .register-form .ip-list .ip-items::-webkit-scrollbar-thumb { background: #E2E8F0; border-radius: 3px; } .register-form .ip-list .ip-items::-webkit-scrollbar-thumb:hover { background: #94A3B8; } .register-form .ip-list .ip-item { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #E2E8F0; transition: all 0.3s ease; } .register-form .ip-list .ip-item:last-child { border-bottom: none; } .register-form .ip-list .ip-item:hover { background: #F8FAFC; } .register-form .ip-list .ip-item .ip-address { font-family: "Fira Code", "Courier New", monospace; font-size: 14px; color: #1A1A2E; font-weight: 500; } .register-form .ip-list .ip-item .btn-remove-ip { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; padding: 0; background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 6px; color: #64748B; cursor: pointer; transition: all 0.3s ease; } .register-form .ip-list .ip-item .btn-remove-ip svg { width: 14px; height: 14px; } .register-form .ip-list .ip-item .btn-remove-ip:active { transform: scale(0.95); } .register-form-container .form-actions, .register-form-container .form-actions-center { justify-content: space-between; padding: 0 24px 24px; margin-top: 40px; border-top: none; padding-top: 0; } @media (max-width: 768px) { .register-form-container .form-actions, .register-form-container .form-actions-center { padding: 0 16px 16px; } } .register-result { text-align: center; margin: 0 auto; height: 1045px; padding-top: 262px; } .register-result.success .result-icon img { width: 250px; height: 250px; } .register-result.error .result-icon { background: rgba(255, 107, 107, 0.1); color: #FF6B6B; } .register-result .result-icon-wrapper { margin-bottom: 32px; } .register-result .result-icon-wrapper .result-icon { margin: 0 auto; display: flex; align-items: center; justify-content: center; font-size: 40px; } .register-result .result-header { margin-bottom: 40px; } .register-result .result-header h1 { font-size: 24px; font-weight: 700; color: #0049b4; margin-bottom: 16px; } .register-result .result-header .result-description { font-size: 16px; color: #64748B; margin: 0 auto; } .key-info-card { background: #FFFFFF; border-radius: 12px; padding: 32px; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); margin-bottom: 32px; text-align: left; } .key-info-card .info-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid #E2E8F0; } .key-info-card .info-row:last-child { border-bottom: none; } .key-info-card .info-row .info-label { font-size: 14px; color: #64748B; font-weight: 500; min-width: 120px; } .key-info-card .info-row .info-value { font-size: 16px; color: #1A1A2E; font-weight: 500; } .key-info-card .info-row .key-display { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: flex-end; } .key-info-card .info-row .key-display .key-value { font-family: "Fira Code", "Courier New", monospace; font-size: 14px; background: #F8FAFC; padding: 8px 12px; border-radius: 6px; color: #c3dfea; margin-right: 8px; } .key-info-card .info-row .key-display .btn-copy, .key-info-card .info-row .key-display .btn-toggle-visibility { padding: 6px 10px; background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 6px; cursor: pointer; transition: all 0.3s ease; } .key-info-card .info-row .key-display .btn-copy:hover, .key-info-card .info-row .key-display .btn-toggle-visibility:hover { background: #0049b4; border-color: #0049b4; color: #FFFFFF; } .key-info-card .info-row .status-badge.active { padding: 4px 12px; background: rgba(107, 207, 127, 0.15); color: #4FA065; border-radius: 50px; font-size: 12px; font-weight: 600; } .selected-apis-summary { background: #F8FAFC; border-radius: 12px; padding: 24px; margin-bottom: 32px; text-align: left; } .selected-apis-summary h3 { font-size: 18px; font-weight: 600; color: #1A1A2E; margin-bottom: 16px; } .selected-apis-summary .api-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; } .selected-apis-summary .api-chips .api-chip { padding: 6px 12px; background: #FFFFFF; border: 1px solid #0049b4; border-radius: 50px; font-size: 14px; color: #0049b4; } .selected-apis-summary .api-note { font-size: 12px; color: #64748B; font-style: italic; } .next-steps-card { background: #EFF6FF; border-radius: 12px; padding: 32px; margin-bottom: 32px; text-align: left; } .next-steps-card h3 { font-size: 18px; font-weight: 600; color: #1A1A2E; margin-bottom: 16px; } .next-steps-card .steps-list { margin-left: 24px; color: #64748B; font-size: 14px; line-height: 1.8; } .next-steps-card .steps-list li { margin-bottom: 8px; } .result-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; } @media (max-width: 768px) { .result-actions { flex-direction: column; align-items: stretch; gap: 8px; padding: 0 16px; } } .result-actions .btn-primary, .result-actions .btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-size: 16px; font-weight: 500; transition: all 0.3s ease; text-decoration: none; cursor: pointer; border: none; } .result-actions .btn-primary .icon, .result-actions .btn-secondary .icon { font-size: 18px; } @media (max-width: 768px) { .result-actions .btn-primary, .result-actions .btn-secondary { width: 100%; min-height: 48px; padding: 14px 24px; justify-content: center; } } .result-actions .btn-primary { color: #FFFFFF; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .result-actions .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); } .result-actions .btn-secondary { background: #FFFFFF; color: #1A1A2E; border: 1px solid #E2E8F0; } .result-actions .btn-secondary:hover { background: #F8FAFC; border-color: #0049b4; color: #0049b4; } .floating-cart-btn { position: fixed; bottom: 80px; right: 40px; width: 180px; height: 66px; padding: 10px 16px 10px 36px; border-radius: 60px; background-color: #3ba4ed; border: none; color: #FFFFFF; display: flex; align-items: center; justify-content: space-between; cursor: pointer; box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2); transition: all 0.3s ease; z-index: 300; } .floating-cart-btn .cart-label { font-size: 14px; font-weight: 700; color: #FFFFFF; white-space: nowrap; } .floating-cart-btn .cart-badge { display: flex; flex-direction: row; align-items: center; justify-content: center; background: #FFFFFF; width: 57px; height: 57px; border-radius: 120px; flex-shrink: 0; margin-right: -8px; } .floating-cart-btn .cart-badge .cart-count { font-size: 24px; font-weight: 700; color: #212529; line-height: 1; } .floating-cart-btn .cart-badge .cart-unit { font-size: 14px; font-weight: 700; color: #212529; line-height: 1; margin-top: 2px; } .floating-cart-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(59, 164, 237, 0.4); } .floating-cart-btn:active { transform: translateY(-2px); } @media (max-width: 768px) { .floating-cart-btn { bottom: 100px; right: 24px; width: 160px; height: 56px; padding: 8px 12px 8px 28px; } .floating-cart-btn .cart-label { font-size: 12px; } .floating-cart-btn .cart-badge { width: 48px; height: 48px; margin-right: -6px; } .floating-cart-btn .cart-badge .cart-count { font-size: 20px; } .floating-cart-btn .cart-badge .cart-unit { font-size: 12px; } } .modal-dialog .selected-apis-list { display: flex; flex-wrap: wrap; gap: 8px; align-items: flex-start; } .modal-dialog .api-pill { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; background: #f2f2f2; border: none; border-radius: 50px; transition: all 0.2s ease; max-width: 100%; height: 47px; } .modal-dialog .api-pill:hover { background: #e8e8e8; } .modal-dialog .api-pill .api-pill-name { font-size: 16px; font-weight: 400; color: #000000; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 280px; text-align: center; } .modal-dialog .api-pill .api-pill-remove { flex-shrink: 0; width: 20px; height: 20px; padding: 0; background: transparent; border: none; border-radius: 50%; color: #212529; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; overflow: hidden; } .modal-dialog .api-pill .api-pill-remove svg { width: 12px; height: 12px; } .modal-dialog .api-pill .api-pill-remove:hover { background: rgba(0, 0, 0, 0.1); transform: scale(1.1); } .modal-dialog .api-pill .api-pill-remove:active { transform: scale(0.95); } @media (max-width: 768px) { .modal-dialog .api-pill { padding: 8px 14px; height: 42px; } .modal-dialog .api-pill .api-pill-name { font-size: 14px; max-width: 200px; } .modal-dialog .api-pill .api-pill-remove { width: 18px; height: 18px; } .modal-dialog .api-pill .api-pill-remove svg { width: 10px; height: 10px; } } .apikey-detail-container { padding: 40px 24px; } @media (max-width: 768px) { .apikey-detail-container { padding: 24px 16px; } } .register-header { text-align: center; margin-bottom: 80px; } .register-header h1 { font-size: 48px; font-weight: 700; color: #1A1A2E; margin-bottom: 8px; } .register-header .header-description { font-size: 16px; color: #64748B; } .status-section { text-align: center; margin-bottom: 64px; } .status-badge.badge-pending { background-color: #FFF3CD; color: #856404; } .status-badge.badge-approved { background-color: #D4EDDA; color: #155724; } .status-badge.badge-rejected { background-color: #F8D7DA; color: #721C24; } .section-title { font-size: 24px; font-weight: 700; color: #1A1A2E; margin-bottom: 24px; padding-bottom: 16px; } .detail-label { font-size: 14px; font-weight: 600; color: #64748B; } .detail-value { font-size: 16px; color: #1A1A2E; word-break: break-word; } .status-dot { width: 8px; height: 8px; border-radius: 50%; background-color: currentColor; } .api-list-item .api-name { flex: 1; font-size: 16px; font-weight: 500; color: #1A1A2E; margin: 0; } .api-method { display: inline-block; padding: 4px 16px; border-radius: 6px; font-size: 14px; font-weight: 700; font-family: "Fira Code", "Courier New", monospace; min-width: 80px; text-align: center; } .api-method.method-get { background-color: #D1FAE5; color: #065F46; } .api-method.method-post { background-color: #DBEAFE; color: #1E40AF; } .api-method.method-put { background-color: #FEF3C7; color: #92400E; } .api-method.method-delete { background-color: #FEE2E2; color: #991B1B; } .api-method.method-other { background-color: #E2E8F0; color: #1A1A2E; } .api-status { padding: 4px 16px; border-radius: 12px; font-size: 14px; font-weight: 600; } .api-status.status-pending { background-color: #FFF3CD; color: #856404; } .api-status.status-active { background-color: #D4EDDA; color: #155724; } .history-table-wrapper { overflow-x: auto; } .history-table { width: 100%; border-collapse: collapse; } .history-table th { background-color: #F8FAFC; padding: 16px 16px; text-align: left; font-weight: 600; color: #64748B; border-bottom: 2px solid #E2E8F0; } .history-table td { padding: 16px; border-bottom: 1px solid #E2E8F0; } .history-status { display: inline-block; padding: 4px 16px; background-color: #EFF6FF; color: #c3dfea; border-radius: 12px; font-size: 14px; font-weight: 600; } .empty-state { grid-column: 1/-1; padding: 48px 24px; } @media (max-width: 768px) { .btn-action, .btn-secondary, .btn-cancel { width: 100%; } } .app-info-card { display: flex; align-items: flex-start; gap: 32px; padding: 0; padding-top: 27px; margin-bottom: 64px; } @media (max-width: 768px) { .app-info-card { flex-direction: column; align-items: center; text-align: center; padding: 24px 0; gap: 24px; } } .app-info-icon { flex-shrink: 0; width: 160px; height: 160px; border-radius: 16px; overflow: hidden; background: #F8FAFC; display: flex; align-items: center; justify-content: center; margin-left: 87px; } @media (max-width: 768px) { .app-info-icon { width: 120px; height: 120px; } } .app-info-icon .app-icon-image { width: 100%; height: 100%; object-fit: cover; } .app-info-icon .app-icon-placeholder { color: #94A3B8; display: flex; align-items: center; justify-content: center; } .app-info-content { flex: 1; display: flex; flex-direction: column; gap: 16px; } .app-status-badge { display: inline-block; padding: 4px 24px; border-radius: 50px; font-size: 14px; font-weight: 600; width: fit-content; } .app-status-badge.status-approved { background-color: #0049b4; color: #FFFFFF; } .app-status-badge.status-pending { background-color: #FFF3CD; color: #856404; } .app-status-badge.status-inactive { background-color: #E2E8F0; color: #64748B; } .app-status-badge.status-rejected { background-color: #F8D7DA; color: #721C24; } .app-info-name { font-size: 24px; font-weight: 700; color: #1A1A2E; margin: 0; } @media (max-width: 768px) { .app-info-name { font-size: 20px; } } .app-info-description { font-size: 18px; color: #515151; margin: 0; line-height: 1.5; } @media (max-width: 768px) { .app-info-description { font-size: 16px; } } .apikey-info-section { background: #F6F9FB; border-radius: 12px; padding: 48px 40px; margin-bottom: 40px; } @media (max-width: 768px) { .apikey-info-section { padding: 24px; } } .info-row { display: flex; align-items: center; gap: 32px; margin-bottom: 32px; } .info-row:last-child { margin-bottom: 0; } @media (max-width: 768px) { .info-row { flex-direction: column; align-items: flex-start; gap: 8px; } } .info-row-vertical { align-items: flex-start; } .info-row-vertical .info-value { width: 100%; } @media (max-width: 768px) { .info-row-vertical .info-value { max-width: 100%; } } .info-label { flex-shrink: 0; width: 140px; font-size: 20px; font-weight: 700; color: #212529; } @media (max-width: 768px) { .info-label { width: 100%; font-size: 16px; } } .info-value { flex: 1; font-size: 16px; color: #1A1A2E; word-break: break-word; } @media (max-width: 768px) { .info-value { width: 100%; } } .info-value-box { display: flex; align-items: center; justify-content: center; height: 60px; padding: 0 24px; background: #DDDDDD; border-radius: 12px; font-size: 20px; color: #515151; text-align: center; } @media (max-width: 768px) { .info-value-box { height: 50px; font-size: 16px; padding: 0 16px; } } .info-value-box.with-copy { flex: 1; } .info-row-with-action .info-value { display: flex; gap: 16px; align-items: center; } .btn-copy-action { display: flex; align-items: center; justify-content: center; gap: 4px; height: 60px; width: 158px; padding: 0 24px; background: #A4D6EA; border: none; border-radius: 12px; font-size: 20px; font-weight: 700; color: #FFFFFF; cursor: pointer; white-space: nowrap; transition: background 0.2s ease; } .btn-copy-action:hover { background: rgb(122.5625, 195.3303571429, 224.4375); } @media (max-width: 768px) { .btn-copy-action { height: 50px; font-size: 16px; padding: 0 16px; } } .btn-view-secret { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; height: 60px; background: #3BA4ED; border: none; border-radius: 12px; font-size: 20px; font-weight: 700; color: #FFFFFF; cursor: pointer; transition: background 0.2s ease; } .btn-view-secret:hover { background: rgb(20.6074766355, 140.8177570093, 224.3925233645); } .btn-view-secret svg { width: 20px; height: 20px; } @media (max-width: 768px) { .btn-view-secret { max-width: 100%; height: 50px; font-size: 16px; } } .api-list-box { width: 100%; background: #FFFFFF; border: 1px solid #DADADA; border-radius: 12px; padding: 24px; } @media (max-width: 768px) { .api-list-box { max-width: 100%; padding: 16px; } } .api-list-item-figma { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid #DADADA; } .api-list-item-figma:last-child { border-bottom: none; } .api-list-item-figma .api-item-name { font-size: 18px; color: #000; } @media (max-width: 768px) { .api-list-item-figma .api-item-name { font-size: 16px; } } .api-list-item-figma .api-item-status { display: flex; align-items: center; justify-content: center; min-width: 100px; height: 30px; padding: 0 24px; background: #ECEFF4; border-radius: 50px; font-size: 16px; color: #515151; } @media (max-width: 768px) { .api-list-item-figma .api-item-status { min-width: 80px; font-size: 14px; padding: 0 16px; } } .app-list-title { font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 28px; font-weight: 700; color: #1A1A2E; margin: 0; } @media (max-width: 768px) { .app-list-title { font-size: 22px; } } .app-list-container { min-height: 400px; } .app-list-item { display: flex; align-items: center; gap: 24px; padding: 40px 0; border-bottom: 1px solid #e0e0e0; text-decoration: none; color: inherit; transition: background-color 0.2s ease; } .app-list-item:last-child { border-bottom: none; } .app-list-item:hover { background-color: rgba(255, 255, 255, 0.5); margin: 0 -20px; padding-left: 20px; padding-right: 20px; border-radius: 8px; } @media (max-width: 768px) { .app-list-item { flex-direction: column; align-items: flex-start; padding: 30px 0; gap: 16px; } .app-list-item:hover { margin: 0 -10px; padding-left: 10px; padding-right: 10px; } } .app-list-icon { width: 70px; height: 70px; } @media (max-width: 768px) { .app-list-icon { width: 60px; height: 60px; } } .app-list-icon .app-icon-image { border: none; } .app-list-icon .app-icon-placeholder { font-size: inherit; } .app-list-info { display: flex; flex-direction: column; gap: 14px; flex: 1; } .app-list-header { display: flex; align-items: center; gap: 12px; } @media (max-width: 768px) { .app-list-header { flex-wrap: wrap; gap: 8px; } } .app-list-name { font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 22px; font-weight: 700; color: #1A1A2E; margin: 0; } @media (max-width: 768px) { .app-list-name { font-size: 18px; } } .app-list-description { font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 16px; font-weight: 400; color: #6e7780; margin: 0; line-height: 1.5; } @media (max-width: 768px) { .app-list-description { font-size: 14px; } } .app-create-button-wrapper { display: flex; justify-content: center; margin-top: 60px; } @media (max-width: 768px) { .app-create-button-wrapper { margin-top: 40px; } } .btn-app-create { background-color: #0049b4; color: #FFFFFF; } .btn-app-create:hover { background-color: #003a91; } .notice-page { min-height: calc(100vh - 140px); background: #F8FAFC; padding: 48px 24px; } @media (max-width: 768px) { .notice-page { padding: 40px 16px; } } .notice-container { max-width: 1280px; margin: 0 auto; } .notice-header { margin-bottom: 48px; } @media (max-width: 768px) { .notice-header { margin-bottom: 40px; } } .notice-header .page-title { font-size: 40px; font-weight: 700; color: #1A1A2E; margin-bottom: 16px; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } @media (max-width: 768px) { .notice-header .page-title { font-size: 32px; } } .notice-header .page-description { font-size: 16px; color: #64748B; line-height: 1.6; } @media (max-width: 768px) { .notice-header .page-description { font-size: 14px; } } .notice-list-wrapper { background: #FFFFFF; border-radius: 12px; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); overflow: hidden; margin-bottom: 32px; } .notice-detail-container { max-width: 1228px; margin: 0 auto; padding: 48px 24px; } @media (max-width: 1024px) { .notice-detail-container { padding: 40px 16px; } } .notice-detail-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid #212529; margin-bottom: 32px; } @media (max-width: 1024px) { .notice-detail-header { flex-direction: column; align-items: flex-start; gap: 8px; } } .notice-detail-title { font-size: 24px; font-weight: 700; color: #212529; line-height: 1; margin: 0; } @media (max-width: 1024px) { .notice-detail-title { font-size: 20px; } } .notice-detail-date { font-size: 24px; font-weight: 400; color: #515151; } @media (max-width: 1024px) { .notice-detail-date { font-size: 16px; } } .notice-detail-attachment { margin-bottom: 24px; } .notice-detail-attachment .attachment-list { display: flex; flex-direction: column; gap: 8px; } .notice-detail-attachment .attachment-item { display: flex; align-items: center; } .notice-attachment-link { display: inline-flex; align-items: center; gap: 4px; color: #515151; font-size: 18px; text-decoration: none; transition: all 0.3s ease; } @media (max-width: 1024px) { .notice-attachment-link { font-size: 14px; } } .notice-attachment-link:hover { color: #0049b4; } .notice-attachment-link svg { flex-shrink: 0; color: #515151; } .notice-attachment-link:hover svg { color: #0049b4; } .notice-attachment-link .attachment-label { margin-right: 16px; } .notice-attachment-link .attachment-filename { color: #515151; } .notice-detail-content { margin-bottom: 48px; } .notice-content-body { background: #F6F9FB; border-radius: 20px; padding: 40px; min-height: 280px; font-size: 16px; color: #1A1A2E; line-height: 1.8; } @media (max-width: 1024px) { .notice-content-body { padding: 24px; min-height: 200px; border-radius: 12px; } } .notice-content-body p { margin-bottom: 16px; } .notice-content-body p:last-child { margin-bottom: 0; } .notice-content-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 24px 0; } .notice-content-body a { color: #0049b4; text-decoration: underline; } .notice-content-body a:hover { color: #c3dfea; } .notice-content-body ul, .notice-content-body ol { margin: 16px 0; padding-left: 32px; } .notice-content-body li { margin-bottom: 8px; } .notice-detail-actions { display: flex; justify-content: center; } .btn-notice-list { display: flex; align-items: center; justify-content: center; width: 200px; height: 60px; background: #E5E7EB; border: none; border-radius: 12px; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 18px; font-weight: 700; color: #5F666C; cursor: pointer; transition: all 0.3s ease; } @media (max-width: 1024px) { .btn-notice-list { width: 160px; height: 50px; font-size: 16px; } } .btn-notice-list:hover { background: rgb(214.5869565217, 217.6956521739, 223.9130434783); } .btn-notice-list:active { transform: scale(0.98); } .notice-detail-card { background: #FFFFFF; border-radius: 12px; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); overflow: hidden; margin-bottom: 32px; } .notice-detail-card .detail-header { padding: 48px 40px 32px; border-bottom: 2px solid #E2E8F0; } @media (max-width: 768px) { .notice-detail-card .detail-header { padding: 40px 24px 16px; } } .notice-detail-card .detail-header .notice-title { font-size: 32px; font-weight: 700; color: #1A1A2E; line-height: 1.2; margin-bottom: 24px; } @media (max-width: 768px) { .notice-detail-card .detail-header .notice-title { font-size: 24px; } } .notice-detail-card .detail-header .notice-meta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; font-size: 14px; color: #64748B; } @media (max-width: 768px) { .notice-detail-card .detail-header .notice-meta { font-size: 12px; gap: 16px; } } .notice-detail-card .detail-header .notice-meta .meta-item { display: flex; align-items: center; gap: 4px; } .notice-detail-card .detail-header .notice-meta .meta-item i { color: #0049b4; } .notice-detail-card .detail-header .notice-meta .meta-item strong { color: #1A1A2E; font-weight: 500; } .notice-detail-card .detail-attachments { padding: 24px 40px; background: #F8FAFC; border-bottom: 1px solid #E2E8F0; } @media (max-width: 768px) { .notice-detail-card .detail-attachments { padding: 16px 24px; } } .notice-detail-card .detail-attachments .attachment-list { display: flex; flex-direction: column; gap: 8px; } .notice-detail-card .detail-attachments .attachment-list .attachment-item { display: flex; align-items: center; gap: 8px; } .notice-detail-card .detail-attachments .attachment-list .attachment-item a { color: #1A1A2E; text-decoration: none; font-size: 14px; transition: all 0.3s ease; display: flex; align-items: center; gap: 4px; } @media (max-width: 768px) { .notice-detail-card .detail-attachments .attachment-list .attachment-item a { font-size: 12px; } } .notice-detail-card .detail-attachments .attachment-list .attachment-item a:hover { color: #0049b4; } .notice-detail-card .detail-attachments .attachment-list .attachment-item a:hover i { transform: translateY(-2px); } .notice-detail-card .detail-attachments .attachment-list .attachment-item a i { color: #0049b4; transition: all 0.3s ease; } .notice-detail-card .detail-content { padding: 48px 40px; min-height: 300px; } @media (max-width: 768px) { .notice-detail-card .detail-content { padding: 40px 24px; } } .notice-detail-card .detail-content .content-body { font-size: 16px; color: #1A1A2E; line-height: 1.8; } @media (max-width: 768px) { .notice-detail-card .detail-content .content-body { font-size: 14px; } } .notice-detail-card .detail-content .content-body p { margin-bottom: 16px; } .notice-detail-card .detail-content .content-body p:last-child { margin-bottom: 0; } .notice-detail-card .detail-content .content-body h1, .notice-detail-card .detail-content .content-body h2, .notice-detail-card .detail-content .content-body h3, .notice-detail-card .detail-content .content-body h4, .notice-detail-card .detail-content .content-body h5, .notice-detail-card .detail-content .content-body h6 { margin-top: 32px; margin-bottom: 16px; font-weight: 600; color: #1A1A2E; } .notice-detail-card .detail-content .content-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 24px 0; } .notice-detail-card .detail-content .content-body a { color: #0049b4; text-decoration: underline; } .notice-detail-card .detail-content .content-body a:hover { color: #c3dfea; } .notice-detail-card .detail-content .content-body ul, .notice-detail-card .detail-content .content-body ol { margin: 16px 0; padding-left: 32px; } .notice-detail-card .detail-content .content-body li { margin-bottom: 8px; } .notice-detail-card .detail-content .content-body blockquote { border-left: 4px solid #0049b4; padding-left: 24px; margin: 24px 0; color: #64748B; font-style: italic; } .notice-detail-card .detail-content .content-body code { background: #F8FAFC; padding: 2px 6px; border-radius: 6px; font-family: "Fira Code", "Courier New", monospace; font-size: 0.9em; color: #0049b4; } .notice-detail-card .detail-content .content-body pre { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px; padding: 16px; overflow-x: auto; margin: 24px 0; } .notice-detail-card .detail-content .content-body pre code { background: transparent; padding: 0; color: #1A1A2E; } .notice-detail-card .detail-content .content-body table { width: 100%; border-collapse: collapse; margin: 24px 0; border: 1px solid #E2E8F0; border-radius: 8px; overflow: hidden; } .notice-detail-card .detail-content .content-body table th { background: #EFF6FF; padding: 8px 16px; text-align: left; font-weight: 600; border-bottom: 2px solid #E2E8F0; } .notice-detail-card .detail-content .content-body table td { padding: 8px 16px; border-bottom: 1px solid #E2E8F0; } .notice-detail-card .detail-content .content-body table tr:last-child td { border-bottom: none; } .notice-actions { display: flex; justify-content: center; gap: 16px; margin-bottom: 48px; } @media (max-width: 768px) { .notice-actions { flex-direction: column; align-items: stretch; } } .notice-navigation { background: #FFFFFF; border-radius: 12px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); overflow: hidden; } .notice-navigation .nav-item { display: flex; align-items: center; justify-content: space-between; padding: 24px 40px; border-bottom: 1px solid #E2E8F0; transition: all 0.3s ease; cursor: pointer; } @media (max-width: 768px) { .notice-navigation .nav-item { flex-direction: column; align-items: flex-start; padding: 16px 24px; gap: 8px; } } .notice-navigation .nav-item:last-child { border-bottom: none; } .notice-navigation .nav-item:hover { background: #F8FAFC; } .notice-navigation .nav-item:hover .nav-title { color: #0049b4; } .notice-navigation .nav-item .nav-label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: #64748B; min-width: 80px; } @media (max-width: 768px) { .notice-navigation .nav-item .nav-label { font-size: 12px; } } .notice-navigation .nav-item .nav-label i { color: #0049b4; } .notice-navigation .nav-item .nav-title { flex: 1; font-size: 16px; color: #1A1A2E; transition: all 0.3s ease; } @media (max-width: 768px) { .notice-navigation .nav-item .nav-title { font-size: 14px; } } .notice-navigation .nav-item .nav-date { font-size: 14px; color: #94A3B8; min-width: 100px; text-align: right; } @media (max-width: 768px) { .notice-navigation .nav-item .nav-date { font-size: 12px; text-align: left; } } .inquiry-detail-container { max-width: 1228px; margin: 0 auto; padding: 48px 24px; } @media (max-width: 1024px) { .inquiry-detail-container { padding: 40px 16px; } } .inquiry-detail-header { padding-bottom: 16px; border-bottom: 1px solid #212529; margin-bottom: 32px; } .inquiry-header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; } @media (max-width: 1024px) { .inquiry-header-top { flex-direction: column; align-items: flex-start; gap: 8px; } } .inquiry-detail-title { font-size: 24px; font-weight: 700; color: #212529; line-height: 1.4; margin: 0; } @media (max-width: 1024px) { .inquiry-detail-title { font-size: 20px; } } .inquiry-detail-date { font-size: 18px; font-weight: 400; color: #515151; } @media (max-width: 1024px) { .inquiry-detail-date { font-size: 16px; } } .inquiry-detail-attachment { margin-bottom: 24px; } .inquiry-detail-attachment .attachment-list { display: flex; flex-direction: column; gap: 8px; } .inquiry-detail-attachment .attachment-item { display: flex; align-items: center; } .inquiry-attachment-link { display: inline-flex; align-items: center; gap: 4px; color: #515151; font-size: 18px; text-decoration: none; transition: all 0.3s ease; } @media (max-width: 1024px) { .inquiry-attachment-link { font-size: 14px; } } .inquiry-attachment-link:hover { color: #0049b4; } .inquiry-attachment-link svg { flex-shrink: 0; color: #515151; } .inquiry-attachment-link:hover svg { color: #0049b4; } .inquiry-attachment-link .attachment-label { margin-right: 16px; } .inquiry-attachment-link .attachment-filename { color: #515151; } .inquiry-detail-content { margin-bottom: 40px; } .inquiry-content-body { background: #F6F9FB; border-radius: 20px; padding: 40px; min-height: 200px; font-size: 16px; color: #1A1A2E; line-height: 1.8; white-space: pre-line; } @media (max-width: 1024px) { .inquiry-content-body { padding: 24px; min-height: 150px; border-radius: 12px; } } .inquiry-content-body p { margin-bottom: 16px; } .inquiry-content-body p:last-child { margin-bottom: 0; } .inquiry-content-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 24px 0; } .inquiry-content-body a { color: #0049b4; text-decoration: underline; } .inquiry-content-body a:hover { color: #c3dfea; } .inquiry-response-section { margin-bottom: 40px; } .inquiry-response-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid #DADADA; margin-bottom: 24px; } @media (max-width: 1024px) { .inquiry-response-header { flex-direction: column; align-items: flex-start; gap: 8px; } } .response-label { font-size: 20px; font-weight: 700; color: #0049b4; } @media (max-width: 1024px) { .response-label { font-size: 18px; } } .response-date { font-size: 18px; font-weight: 400; color: #515151; } @media (max-width: 1024px) { .response-date { font-size: 16px; } } .inquiry-response-body { background: #ffffff; border: 1px solid #E5E7EB; border-radius: 20px; padding: 40px; min-height: 150px; font-size: 16px; color: #1A1A2E; line-height: 1.8; white-space: pre-line; } @media (max-width: 1024px) { .inquiry-response-body { padding: 24px; min-height: 100px; border-radius: 12px; } } .inquiry-detail-actions { display: flex; justify-content: space-between; align-items: center; gap: 16px; } @media (max-width: 1024px) { .inquiry-detail-actions { flex-direction: column-reverse; gap: 24px; } } .inquiry-detail-actions .actions-left { display: flex; gap: 16px; } .inquiry-detail-actions .actions-right { display: flex; gap: 16px; } .btn-inquiry-list { display: flex; align-items: center; justify-content: center; width: 200px; height: 60px; background: #E5E7EB; border: none; border-radius: 12px; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 18px; font-weight: 700; color: #5F666C; cursor: pointer; transition: all 0.3s ease; } @media (max-width: 1024px) { .btn-inquiry-list { width: 160px; height: 50px; font-size: 16px; } } .btn-inquiry-list:hover { background: rgb(214.5869565217, 217.6956521739, 223.9130434783); } .btn-inquiry-list:active { transform: scale(0.98); } .btn-inquiry-edit { display: flex; align-items: center; justify-content: center; width: 200px; height: 60px; background: #0049b4; border: none; border-radius: 12px; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 18px; font-weight: 700; color: #FFFFFF; cursor: pointer; transition: all 0.3s ease; } @media (max-width: 1024px) { .btn-inquiry-edit { width: 100px; height: 50px; font-size: 16px; } } .btn-inquiry-edit:hover { background: rgb(0, 62.6583333333, 154.5); } .btn-inquiry-edit:active { transform: scale(0.98); } .btn-inquiry-delete { display: flex; align-items: center; justify-content: center; width: 200px; height: 60px; background: #DC3545; border: none; border-radius: 12px; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 18px; font-weight: 700; color: #FFFFFF; cursor: pointer; transition: all 0.3s ease; } @media (max-width: 1024px) { .btn-inquiry-delete { width: 100px; height: 50px; font-size: 16px; } } .btn-inquiry-delete:hover { background: rgb(210.9493670886, 36.5506329114, 53.2594936709); } .btn-inquiry-delete:active { transform: scale(0.98); } .inquiry-form-container { max-width: 1228px; margin: 0 auto; padding: 48px 24px; } @media (max-width: 1024px) { .inquiry-form-container { padding: 40px 16px; } } .file-upload-inline { display: flex; align-items: center; gap: 20px; } @media (max-width: 1024px) { .file-upload-inline { flex-direction: column; align-items: stretch; gap: 16px; } } .file-upload-inline .file-input-display { flex: 1; display: flex; align-items: center; justify-content: space-between; height: 60px; padding: 0 20px; background: #FFFFFF; border: 1px solid #DADADA; border-radius: 12px; min-width: 0; } .file-upload-inline .file-input-display.has-file { border-color: #3ba4ed; } .file-upload-inline .file-display-text { flex: 1; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 16px; color: #94A3B8; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .file-upload-inline .file-display-text.has-file { color: #1A1A2E; } .file-upload-inline .btn-remove-file-inline { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: #DC3545; border: none; border-radius: 50%; color: #FFFFFF; cursor: pointer; transition: all 0.3s ease; flex-shrink: 0; margin-left: 8px; } .file-upload-inline .btn-remove-file-inline:hover { background: rgb(189.2151898734, 32.7848101266, 47.7721518987); } .file-upload-inline .btn-remove-file-inline svg { width: 12px; height: 12px; } .file-upload-inline .btn-file-attach { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 172px; height: 60px; padding: 10px; background: #3ba4ed; border: none; border-radius: 12px; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; font-size: 18px; font-weight: 700; color: #FFFFFF; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; flex-shrink: 0; } @media (max-width: 1024px) { .file-upload-inline .btn-file-attach { width: 100%; } } .file-upload-inline .btn-file-attach:hover { background: rgb(21.6317757009, 146.6504672897, 233.5682242991); } .file-upload-inline .btn-file-attach svg { width: 22px; height: 22px; flex-shrink: 0; } .file-upload-hint { margin-top: 8px; font-size: 14px; color: #94A3B8; line-height: 1.6; } .file-upload-hint strong { color: #1A1A2E; } .inquiry-page { min-height: calc(100vh - 140px); background: #F8FAFC; padding: 48px 24px; } @media (max-width: 768px) { .inquiry-page { padding: 40px 16px; } } .inquiry-container { max-width: 1280px; margin: 0 auto; } .inquiry-header { margin-bottom: 48px; } @media (max-width: 768px) { .inquiry-header { margin-bottom: 40px; } } .inquiry-header .page-title { font-size: 40px; font-weight: 700; color: #1A1A2E; margin-bottom: 16px; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } @media (max-width: 768px) { .inquiry-header .page-title { font-size: 32px; } } .inquiry-header .page-description { font-size: 16px; color: #64748B; line-height: 1.6; } @media (max-width: 768px) { .inquiry-header .page-description { font-size: 14px; } } .inquiry-list-wrapper { background: #FFFFFF; border-radius: 12px; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); overflow: hidden; margin-bottom: 32px; } .inquiry-table { width: 100%; background: #FFFFFF; border-radius: 12px; overflow: hidden; } .inquiry-table .table-header { display: grid; grid-template-columns: 80px 1fr 100px 100px 120px; gap: 16px; padding: 16px 24px; background: #EFF6FF; border-bottom: 2px solid #E2E8F0; font-size: 14px; font-weight: 600; color: #1A1A2E; } @media (max-width: 1024px) { .inquiry-table .table-header { grid-template-columns: 60px 1fr 80px 100px; padding: 8px 16px; font-size: 12px; } .inquiry-table .table-header .col-name { display: none; } } @media (max-width: 768px) { .inquiry-table .table-header { display: none; } } .inquiry-table .table-header .col-num { text-align: center; } .inquiry-table .table-header .col-title { text-align: left; } .inquiry-table .table-header .col-name { text-align: center; } .inquiry-table .table-header .col-status { text-align: center; } .inquiry-table .table-header .col-date { text-align: center; } .inquiry-table .table-row { display: grid; grid-template-columns: 80px 1fr 100px 100px 120px; gap: 16px; padding: 24px; border-bottom: 1px solid #E2E8F0; transition: all 0.3s ease; cursor: pointer; } @media (max-width: 1024px) { .inquiry-table .table-row { grid-template-columns: 60px 1fr 80px 100px; padding: 16px; } .inquiry-table .table-row .col-name { display: none; } } @media (max-width: 768px) { .inquiry-table .table-row { grid-template-columns: 1fr; gap: 8px; padding: 16px; } } .inquiry-table .table-row:last-child { border-bottom: none; } .inquiry-table .table-row:hover { background-color: rgba(0, 73, 180, 0.02); } .inquiry-table .table-row .col-num { display: flex; align-items: center; justify-content: center; font-size: 14px; color: #64748B; font-weight: 500; } @media (max-width: 768px) { .inquiry-table .table-row .col-num { display: none; } } .inquiry-table .table-row .col-title { display: flex; align-items: center; font-size: 16px; color: #1A1A2E; font-weight: 500; } @media (max-width: 768px) { .inquiry-table .table-row .col-title { font-size: 14px; } } .inquiry-table .table-row .col-title a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; } .inquiry-table .table-row .col-title a:hover { color: #0049b4; } .inquiry-table .table-row .col-title .file-icon { display: inline-flex; align-items: center; margin-left: 8px; opacity: 0.6; } .inquiry-table .table-row .col-title .file-icon img { width: 16px; height: 16px; } .inquiry-table .table-row .col-name { display: flex; align-items: center; justify-content: center; font-size: 14px; color: #64748B; } @media (max-width: 1024px) { .inquiry-table .table-row .col-name { display: none; } } .inquiry-table .table-row .col-status { display: flex; align-items: center; justify-content: center; } @media (max-width: 768px) { .inquiry-table .table-row .col-status { justify-content: flex-start; } } .inquiry-table .table-row .col-date { display: flex; align-items: center; justify-content: center; font-size: 14px; color: #94A3B8; } @media (max-width: 768px) { .inquiry-table .table-row .col-date { justify-content: flex-start; font-size: 12px; padding-top: 4px; } } @media (max-width: 768px) { .inquiry-table .table-row .col-date::before { content: "등록일: "; color: #64748B; margin-right: 4px; } } .inquiry-actions { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 32px; } @media (max-width: 768px) { .inquiry-actions { flex-direction: column; align-items: stretch; } } .inquiry-actions .actions-left, .inquiry-actions .actions-right { display: flex; align-items: center; gap: 16px; } @media (max-width: 768px) { .inquiry-actions .actions-left, .inquiry-actions .actions-right { width: 100%; justify-content: center; } } @media (max-width: 768px) { .inquiry-actions { flex-direction: column; align-items: stretch; gap: 16px; } .inquiry-actions .actions-left, .inquiry-actions .actions-right { flex-direction: column; } } .inquiry-detail-page { min-height: calc(100vh - 140px); background: #F8FAFC; padding: 48px 24px; } @media (max-width: 768px) { .inquiry-detail-page { padding: 40px 16px; } } .inquiry-detail-container { margin: 0 auto; } .inquiry-detail-card { background: #FFFFFF; border-radius: 12px; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); overflow: hidden; margin-bottom: 32px; } .inquiry-detail-card .detail-header { padding: 48px 40px 32px; border-bottom: 2px solid #E2E8F0; } @media (max-width: 768px) { .inquiry-detail-card .detail-header { padding: 40px 24px 16px; } } .inquiry-detail-card .detail-header .inquiry-title { font-size: 32px; font-weight: 700; color: #1A1A2E; line-height: 1.2; margin-bottom: 24px; } @media (max-width: 768px) { .inquiry-detail-card .detail-header .inquiry-title { font-size: 24px; } } .inquiry-detail-card .detail-header .inquiry-meta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; font-size: 14px; color: #64748B; } @media (max-width: 768px) { .inquiry-detail-card .detail-header .inquiry-meta { font-size: 12px; gap: 16px; } } .inquiry-detail-card .detail-header .inquiry-meta .meta-item { display: flex; align-items: center; gap: 4px; } .inquiry-detail-card .detail-header .inquiry-meta .meta-item i { color: #0049b4; } .inquiry-detail-card .detail-header .inquiry-meta .meta-item strong { color: #1A1A2E; font-weight: 500; } .inquiry-detail-card .detail-attachments { padding: 24px 40px; background: #F8FAFC; border-bottom: 1px solid #E2E8F0; } @media (max-width: 768px) { .inquiry-detail-card .detail-attachments { padding: 16px 24px; } } .inquiry-detail-card .detail-attachments .attachment-list { display: flex; flex-direction: column; gap: 8px; } .inquiry-detail-card .detail-attachments .attachment-list .attachment-item { display: flex; align-items: center; gap: 8px; } .inquiry-detail-card .detail-attachments .attachment-list .attachment-item a { color: #1A1A2E; text-decoration: none; font-size: 14px; transition: all 0.3s ease; display: flex; align-items: center; gap: 4px; } @media (max-width: 768px) { .inquiry-detail-card .detail-attachments .attachment-list .attachment-item a { font-size: 12px; } } .inquiry-detail-card .detail-attachments .attachment-list .attachment-item a:hover { color: #0049b4; } .inquiry-detail-card .detail-attachments .attachment-list .attachment-item a:hover i { transform: translateY(-2px); } .inquiry-detail-card .detail-attachments .attachment-list .attachment-item a i { color: #0049b4; transition: all 0.3s ease; } .inquiry-detail-card .detail-content { padding: 48px 40px; min-height: 200px; } @media (max-width: 768px) { .inquiry-detail-card .detail-content { padding: 40px 24px; } } .inquiry-detail-card .detail-content .content-body { font-size: 16px; color: #1A1A2E; line-height: 1.8; white-space: pre-line; } @media (max-width: 768px) { .inquiry-detail-card .detail-content .content-body { font-size: 14px; } } .inquiry-response-card { background: #FFFFFF; border-radius: 12px; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); overflow: hidden; margin-bottom: 32px; border-left: 4px solid #6BCF7F; } .inquiry-response-card .response-header { padding: 32px 40px; background: rgba(107, 207, 127, 0.03); border-bottom: 1px solid #E2E8F0; } @media (max-width: 768px) { .inquiry-response-card .response-header { padding: 24px; } } .inquiry-response-card .response-header .response-title { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 600; color: #1A1A2E; margin-bottom: 8px; } .inquiry-response-card .response-header .response-title i { color: #6BCF7F; } .inquiry-response-card .response-header .response-meta { font-size: 14px; color: #64748B; } @media (max-width: 768px) { .inquiry-response-card .response-header .response-meta { font-size: 12px; } } .inquiry-response-card .response-content { padding: 40px; font-size: 16px; color: #1A1A2E; line-height: 1.8; white-space: pre-line; } @media (max-width: 768px) { .inquiry-response-card .response-content { padding: 24px; font-size: 14px; } } .inquiry-detail-actions { display: flex; justify-content: center; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; } @media (max-width: 768px) { .inquiry-detail-actions { flex-direction: column; align-items: stretch; } } .inquiry-detail-actions .action-btn { padding: 16px 40px; border-radius: 8px; font-size: 16px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; border: none; } @media (max-width: 768px) { .inquiry-detail-actions .action-btn { padding: 16px 24px; font-size: 14px; } } .inquiry-detail-actions .action-btn.btn-list { background: #FFFFFF; color: #1A1A2E; border: 1px solid #E2E8F0; } .inquiry-detail-actions .action-btn.btn-list:hover { background: #F8FAFC; border-color: #0049b4; } .inquiry-detail-actions .action-btn.btn-edit { color: #FFFFFF; } .inquiry-detail-actions .action-btn.btn-edit:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .inquiry-detail-actions .action-btn.btn-delete { background: #FF6B6B; color: #FFFFFF; } .inquiry-detail-actions .action-btn.btn-delete:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .inquiry-detail-actions .action-btn i { font-size: 16px; } .inquiry-form-page { min-height: calc(100vh - 140px); background: #F8FAFC; padding: 48px 24px; } @media (max-width: 768px) { .inquiry-form-page { padding: 40px 16px; } } .inquiry-form-container { margin: 0 auto; } .inquiry-form-card { background: #FFFFFF; border-radius: 12px; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); padding: 48px; margin-bottom: 32px; } @media (max-width: 768px) { .inquiry-form-card { padding: 40px 24px; } } .inquiry-form-card .form-group { margin-bottom: 40px; } .inquiry-form-card .form-group:last-child { margin-bottom: 0; } .inquiry-form-card .form-group .form-label { display: block; font-size: 16px; font-weight: 600; color: #1A1A2E; margin-bottom: 16px; } @media (max-width: 768px) { .inquiry-form-card .form-group .form-label { font-size: 14px; } } .inquiry-form-card .form-group .form-label.required::after { content: "*"; color: #FF6B6B; margin-left: 4px; } .inquiry-form-card .form-group .form-input { width: 100%; padding: 16px; border: 1px solid #E2E8F0; border-radius: 8px; font-size: 16px; transition: all 0.3s ease; } @media (max-width: 768px) { .inquiry-form-card .form-group .form-input { font-size: 14px; padding: 8px 16px; } } .inquiry-form-card .form-group .form-input:focus { outline: none; border-color: #0049b4; box-shadow: 0 0 0 3px rgba(0, 73, 180, 0.1); } .inquiry-form-card .form-group .form-input::placeholder { color: #94A3B8; } .inquiry-form-card .form-group .form-textarea { width: 100%; min-height: 200px; padding: 16px; border: 1px solid #E2E8F0; border-radius: 8px; font-size: 16px; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif; resize: vertical; transition: all 0.3s ease; } @media (max-width: 768px) { .inquiry-form-card .form-group .form-textarea { font-size: 14px; padding: 8px 16px; min-height: 150px; } } .inquiry-form-card .form-group .form-textarea:focus { outline: none; border-color: #0049b4; box-shadow: 0 0 0 3px rgba(0, 73, 180, 0.1); } .inquiry-form-card .form-group .form-textarea::placeholder { color: #94A3B8; } .inquiry-form-actions { display: flex; justify-content: center; gap: 16px; margin-top: 32px; } @media (max-width: 768px) { .inquiry-form-actions { flex-direction: column-reverse; align-items: stretch; } } .org-register-page { min-height: 100vh; padding: 0; } @media (max-width: 768px) { .org-register-page { padding: 0; } } .org-register-container { padding: 40px 24px; } @media (max-width: 768px) { .org-register-container { padding: 24px 16px; } } .org-register-title { font-size: 40px; font-weight: 700; color: #1A1A2E; text-align: center; margin-bottom: 48px; } @media (max-width: 768px) { .org-register-title { font-size: 32px; margin-bottom: 32px; } } .org-section-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 32px; background: #EDF9FE; border-radius: 8px; margin-bottom: 32px; } .org-section-header h3 { font-size: 20px; font-weight: 400; color: #515961; margin: 0; } .org-section-header .required-badge { background: rgba(255, 255, 255, 0.2); color: #FFFFFF; padding: 4px 16px; border-radius: 50px; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 4px; } .org-section-header .required-badge::before { content: "*"; color: #FFD93D; font-weight: 700; } .org-section-header--agreement { background: none; padding: 0 0 16px 0; border-radius: 0; border-bottom: 2px solid #212529; margin-bottom: 32px; } .org-section-header--agreement h3 { font-size: 22px; font-weight: 700; color: #212529; margin: 0; } .org-section-header--agreement .required-badge { display: none; } @media (max-width: 768px) { .org-section-header { padding: 16px 24px; } .org-section-header h3 { font-size: 18px; } .org-section-header--agreement { padding: 0 0 8px 0; } .org-section-header--agreement h3 { font-size: 18px; } } .org-info-notice { border-radius: 8px; margin-bottom: 16px; } .org-info-notice ul { list-style: none; padding: 0; margin: 0; } .org-info-notice ul li { position: relative; padding-left: 24px; color: #64748B; font-size: 14px; line-height: 1.6; } .org-info-notice ul li::before { content: "•"; position: absolute; left: 0; color: #0049b4; font-weight: 700; } .org-info-notice ul li + li { margin-top: 8px; } .org-form-group { margin-bottom: 8px; display: flex; align-items: flex-start; gap: 24px; } .org-form-group:last-child { margin-bottom: 0; } @media (max-width: 768px) { .org-form-group { flex-direction: column; gap: 16px; } } .org-form-label { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 600; color: #1A1A2E; min-width: 180px; padding-top: 16px; } .org-form-label .required-badge { display: inline-flex; align-items: center; justify-content: center; padding: 2px 8px; background: #3BA4ED; color: #FFFFFF; font-size: 12px; font-weight: 500; border-radius: 4px; line-height: 1.2; } @media (max-width: 768px) { .org-form-label { min-width: auto; padding-top: 0; } } .org-form-input-wrapper { flex: 1; display: flex; flex-direction: column; gap: 8px; } @media (max-width: 768px) { .org-form-input-wrapper { width: 100%; } } .org-input-row { display: flex; align-items: center; gap: 16px; } .org-input-row .org-form-input, .org-input-row .org-compound-input, .org-input-row .org-auth-input-group { flex: 1; min-width: 0; } .org-input-row .org-btn-check, .org-input-row .org-file-label { flex-shrink: 0; } @media (max-width: 768px) { .org-input-row { flex-direction: column; align-items: stretch; gap: 8px; } .org-input-row .org-form-input, .org-input-row .org-compound-input, .org-input-row .org-auth-input-group { width: 100%; } .org-input-row .org-btn-check, .org-input-row .org-file-label { width: 100%; } } .org-form-input { width: 100%; padding: 16px 24px; border: 2px solid #E2E8F0; border-radius: 8px; font-size: 16px; color: #1A1A2E; transition: all 0.3s ease; background: #FFFFFF; } .org-form-input:focus { outline: none; border-color: #0049b4; box-shadow: 0 0 0 3px rgba(75, 155, 255, 0.1); } .org-form-input:disabled { background: #F8FAFC; color: #94A3B8; cursor: not-allowed; } .org-form-input.is-invalid { border-color: #FF6B6B; } .org-form-input.is-valid { border-color: #6BCF7F; } .org-form-input::placeholder { color: #94A3B8; } .org-compound-input { display: flex; align-items: center; gap: 8px; width: 100%; } .org-compound-input .org-form-input, .org-compound-input .org-form-select { flex: 1; min-width: 0; } .org-compound-input .phone-number { flex: 1; width: 100%; } .org-compound-input .separator { color: #64748B; font-weight: 600; user-select: none; flex-shrink: 0; } @media (max-width: 768px) { .org-compound-input { width: 100%; } .org-compound-input .org-form-input, .org-compound-input .org-form-select { flex: 1; min-width: 0; } } .org-form-select { width: 100%; padding: 16px 24px; border: 2px solid #E2E8F0; border-radius: 8px; font-size: 16px; color: #1A1A2E; background: #FFFFFF; cursor: pointer; transition: all 0.3s ease; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 9L1 4h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 24px center; padding-right: 48px; } .org-form-select:focus { outline: none; border-color: #0049b4; box-shadow: 0 0 0 3px rgba(75, 155, 255, 0.1); } .org-form-select:disabled { background-color: #F8FAFC; color: #94A3B8; cursor: not-allowed; } .org-input-button-group { display: flex; gap: 16px; } .org-input-button-group .org-form-input { flex: 1; } @media (max-width: 768px) { .org-input-button-group { flex-direction: column; } .org-input-button-group .org-form-input { flex: none; } } .org-auth-input-group { position: relative; display: flex; align-items: center; } .org-auth-input-group .org-form-input { padding-right: 100px; } .org-timer { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 14px; font-weight: 600; color: #FF6B6B; pointer-events: none; user-select: none; } .org-btn { padding: 16px 40px; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; border: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap; } .org-btn:disabled { opacity: 0.5; cursor: not-allowed; } .org-btn:not(:disabled):hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .org-btn:not(:disabled):active { transform: translateY(0); } .org-btn-primary { color: #FFFFFF; } .org-btn-secondary { background: #FFFFFF; color: #64748B; border: 2px solid #E2E8F0; } .org-btn-secondary:not(:disabled):hover { border-color: #0049b4; color: #0049b4; } .org-btn-check, .org-file-label { padding: 16px 24px; width: 172px; background: #A4D6EA; color: #FFFFFF; border: 2px solid #A4D6EA; text-align: center; justify-content: center; } .org-btn-check:not(:disabled):hover, .org-file-label:not(:disabled):hover { color: #FFFFFF; } @media (max-width: 768px) { .org-btn-check, .org-file-label { width: 100%; } } .org-file-upload { display: flex; align-items: center; gap: 16px; } @media (max-width: 768px) { .org-file-upload { flex-direction: column; align-items: stretch; } } .org-file-display { flex: 1; padding: 16px 24px; border: 2px dashed #E2E8F0; border-radius: 8px; background: #F8FAFC; color: #94A3B8; cursor: default; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .org-file-display.has-file { border-style: solid; border-color: #6BCF7F; background: rgba(107, 207, 127, 0.05); color: #1A1A2E; } .org-file-label { cursor: pointer; background: #3BA4ED; border-radius: 12px; border: 2px solid #3BA4ED; } .org-file-label input[type=file] { display: none; } .org-file-remove { padding: 16px; background: #FF6B6B; color: #FFFFFF; border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; } .org-file-remove:hover { background: #ff3838; } .org-file-notice { margin-top: 16px; padding: 16px; border-radius: 6px; } .org-file-notice p { margin: 0; font-size: 14px; color: #64748B; line-height: 1.5; } .org-file-notice p + p { margin-top: 4px; } .org-file-notice p::before { content: "• "; color: #FFD93D; font-weight: 700; } .org-action-buttons { display: flex; gap: 24px; justify-content: center; margin-top: 64px; padding-top: 48px; border-top: 1px solid #E2E8F0; } .org-action-buttons .btn { width: 220px; text-align: center; justify-content: center; } @media (max-width: 768px) { .org-action-buttons { flex-direction: row; gap: 21px; margin-top: 40px; padding-top: 32px; border-top: none; } .org-action-buttons .btn { flex: 1; width: auto; min-width: 144px; height: 40px; padding: 8px 10px; font-size: 14px; font-weight: 700; border-radius: 8px; } .org-action-buttons .btn-secondary, .org-action-buttons .btn-outline-secondary { background: #e5e7eb; color: #5f666c; border: none; } .org-action-buttons .btn-secondary:hover, .org-action-buttons .btn-outline-secondary:hover { background: #d1d5db; color: #5f666c; } .org-action-buttons .btn-primary { background: #0049b4; color: #ffffff; border: none; } .org-action-buttons .btn-primary:hover { background: #003d99; color: #ffffff; } } .org-validation-message { margin-top: 8px; padding: 8px 16px; border-radius: 6px; font-size: 14px; } .org-validation-message.success { background: rgba(107, 207, 127, 0.1); color: #6BCF7F; } .org-validation-message.error { background: rgba(255, 107, 107, 0.1); color: #FF6B6B; } .org-loading-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(26, 26, 46, 0.7); display: none; align-items: center; justify-content: center; z-index: 9999; } .org-loading-overlay.active { display: flex; } .org-loading-overlay .spinner { width: 50px; height: 50px; border: 4px solid rgba(255, 255, 255, 0.2); border-top-color: #FFFFFF; border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } @media (max-width: 768px) { .org-form-input { width: 100%; } .org-compound-input { width: 100%; } .org-compound-input .org-form-select, .org-compound-input .org-form-input { flex: 1; min-width: 0; width: auto; font-size: 14px; padding: 8px 16px; } .org-auth-input-group { width: 100%; } .org-auth-input-group .org-form-input { width: 100%; } } .agreement-form { background: #FFFFFF; border: 1px solid #DDDDDD; border-radius: 12px; padding: 30px 20px; display: flex; flex-direction: column; gap: 20px; margin-bottom: 90px; } .agreement-all-section { display: flex; align-items: center; padding: 10px 0; } .agreement-divider { height: 1px; background: #DDDDDD; width: 100%; } .agreement-items-list { display: flex; flex-direction: column; gap: 20px; } .agreement-item-row { display: flex; align-items: center; justify-content: space-between; gap: 4px; height: 28px; } .agreement-checkbox-label { display: flex; align-items: center; gap: 4px; cursor: pointer; flex: 1; user-select: none; } .agreement-checkbox-input { position: absolute; opacity: 0; pointer-events: none; } .agreement-checkbox-input:checked + .agreement-checkbox-custom { background-image: url("/img/checkbox-checked.png"); } .agreement-checkbox-input:focus + .agreement-checkbox-custom { box-shadow: 0 0 0 3px rgba(140, 149, 159, 0.1); } .agreement-checkbox-custom { position: relative; width: 26px; height: 26px; min-width: 26px; border: none; border-radius: 50%; background-image: url("/img/checkbox-unchecked.png"); background-size: contain; background-repeat: no-repeat; background-position: center; transition: all 0.3s ease; padding: 0; } .agreement-checkbox-text { font-size: 16px; font-weight: 400; color: #515961; line-height: 100.02%; display: flex; align-items: center; gap: 4px; } .agreement-checkbox-text.agreement-all-text { font-size: 18px; font-weight: 700; color: #212529; } .agreement-required { color: #0049B4; font-weight: 700; } .agreement-title { color: #515961; } .agreement-toggle-icon { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; min-width: 22px; border: none; background: transparent; color: #64748B; cursor: pointer; transition: all 0.3s ease; padding: 8px 4px 10px 7px; } .agreement-toggle-icon i { font-size: 12px; transition: transform 0.3s ease; } .agreement-toggle-icon:hover { color: #0049b4; } .agreement-toggle-icon.active { color: #0049b4; } .agreement-toggle-icon.active i { transform: rotate(180deg); } .agreement-content { margin-top: 16px; background: #EDF9FE; } .agreement-scroll { max-height: 300px; overflow-y: auto; padding: 24px; } .agreement-scroll::-webkit-scrollbar { width: 8px; } .agreement-scroll::-webkit-scrollbar-track { background: #E2E8F0; border-radius: 6px; } .agreement-scroll::-webkit-scrollbar-thumb { background: #94A3B8; border-radius: 6px; } .agreement-scroll::-webkit-scrollbar-thumb:hover { background: #64748B; } .agreement-scroll div { font-size: 14px; line-height: 1.8; color: #64748B; } .agreement-scroll div h1, .agreement-scroll div h2, .agreement-scroll div h3, .agreement-scroll div h4, .agreement-scroll div h5, .agreement-scroll div h6 { color: #1A1A2E; margin-top: 24px; margin-bottom: 16px; font-weight: 600; } .agreement-scroll div p { margin-bottom: 16px; } .agreement-scroll div ul, .agreement-scroll div ol { margin-left: 24px; margin-bottom: 16px; } .agreement-scroll div table { width: 100%; border-collapse: collapse; margin-bottom: 16px; } .agreement-scroll div table th, .agreement-scroll div table td { border: 1px solid #E2E8F0; padding: 8px; text-align: left; } .agreement-scroll div table th { background: #EFF6FF; font-weight: 600; } @media (max-width: 768px) { .agreement-form { padding: 20px 16px; gap: 16px; } .agreement-all-section { padding: 8px 0; } .agreement-items-list { gap: 16px; } .agreement-item-row { height: auto; min-height: 28px; } .agreement-checkbox-text { font-size: 14px; } .agreement-checkbox-text.agreement-all-text { font-size: 16px; } .agreement-scroll { max-height: 250px; padding: 16px; } } .page-header { margin-bottom: 64px; text-align: center; } @media (max-width: 768px) { .page-header { margin-bottom: 48px; } } .page-header .page-header-content { max-width: 800px; margin: 0 auto; } .page-header .page-title { font-size: 40px; font-weight: 700; color: #1A1A2E; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 16px; } @media (max-width: 768px) { .page-header .page-title { font-size: 32px; flex-direction: column; gap: 8px; } } .page-header .page-title i { color: #0049b4; font-size: 40px; } @media (max-width: 768px) { .page-header .page-title i { font-size: 32px; } } .page-header .page-description { font-size: 20px; color: #64748B; line-height: 1.6; } @media (max-width: 768px) { .page-header .page-description { font-size: 16px; } } .page-header .page-description .highlight { color: #0049b4; font-weight: 600; position: relative; } .page-header .page-description .highlight::after { content: ""; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; border-radius: 2px; } .partnership-form-container { max-width: 800px; margin: 0 auto; } @media (max-width: 768px) { .partnership-form-container { padding: 0 16px; } } .partnership-card { padding: 64px; background: #FFFFFF; border-radius: 16px; box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); border: 1px solid #E2E8F0; } @media (max-width: 768px) { .partnership-card { padding: 40px 24px; border-radius: 8px; } } .partnership-card .form-group { margin-bottom: 40px; } @media (max-width: 768px) { .partnership-card .form-group { margin-bottom: 32px; } } .partnership-card .form-group label { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 600; color: #1A1A2E; margin-bottom: 16px; } .partnership-card .form-group label i { color: #0049b4; font-size: 18px; } .partnership-card .form-group label .required { color: #FF6B6B; margin-left: 2px; } .partnership-card .form-group textarea.form-control { min-height: 200px; resize: vertical; line-height: 1.6; } @media (max-width: 768px) { .partnership-card .form-group textarea.form-control { min-height: 150px; } } .partnership-card .form-hint { display: flex; align-items: flex-start; gap: 4px; margin-top: 8px; font-size: 14px; color: #64748B; line-height: 1.6; } .partnership-card .form-hint i { color: #0049b4; margin-top: 2px; flex-shrink: 0; } .partnership-card .form-error { display: flex; align-items: flex-start; gap: 4px; margin-top: 8px; font-size: 14px; color: #FF6B6B; line-height: 1.6; } .partnership-card .form-error i { margin-top: 2px; flex-shrink: 0; } .partnership-card .form-help-text { margin-top: 16px; } .partnership-card .form-help-text p { display: flex; align-items: flex-start; gap: 4px; margin: 4px 0; font-size: 12px; color: #94A3B8; line-height: 1.6; } .partnership-card .form-help-text p i { color: #6BCF7F; margin-top: 2px; flex-shrink: 0; } .partnership-card .file-upload-wrapper .file-name-display.has-file { color: #1A1A2E; background: rgba(0, 73, 180, 0.05); border-color: #0049b4; font-weight: 500; } @media (max-width: 768px) { .partnership-card .file-upload-wrapper .file-upload-btn { order: 1; } .partnership-card .file-upload-wrapper .file-name-display { order: 2; } .partnership-card .file-upload-wrapper .file-remove-btn { order: 3; } } .partnership-card .form-control:focus { border-color: #0049b4; box-shadow: 0 0 0 3px rgba(0, 73, 180, 0.1); outline: none; } .partnership-card textarea.form-control:focus { box-shadow: 0 0 0 4px rgba(0, 73, 180, 0.15); } @media print { .page-header { margin-bottom: 32px; } .partnership-card { box-shadow: none; border: 1px solid #E2E8F0; padding: 32px; } .form-actions, .form-actions-center { display: none; } .file-upload-wrapper .file-upload-btn, .file-upload-wrapper .file-remove-btn { display: none; } } .user-management-container { max-width: 1400px; margin: 0 auto; padding: 48px 40px; margin-bottom: 40px; } @media (max-width: 768px) { .user-management-container { padding: 24px 16px; } } .user-management-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; } @media (max-width: 768px) { .user-management-header { flex-direction: column; align-items: flex-start; gap: 24px; } } .user-management-title h1 { font-size: 14px; color: #64748B; font-weight: 400; margin-bottom: 4px; } .user-management-title h2 { font-size: 32px; font-weight: 700; color: #1A1A2E; } .user-management-actions { display: flex; gap: 16px; } .btn-create-user-large { padding: 16px 40px; font-size: 18px; margin-top: 24px; } .user-management-container .list-table { margin-bottom: 40px; } .user-management-container .list-table .row-cell a { color: #1A1A2E; text-decoration: none; transition: all 0.3s ease; } .user-management-container .list-table .row-cell a:hover { color: #0049b4; } .user-management-container .table-controls .search-box .btn { height: 44px; } .user-current-badge { display: inline-flex; height: 40px; align-items: center; gap: 6px; padding: 6px 12px; background-color: rgba(167, 139, 250, 0.1); color: #A78BFA; border-radius: 6px; font-size: 14px; font-weight: 500; } .user-empty-state { text-align: center; padding: 80px 24px; color: #64748B; } .user-empty-state .empty-icon { font-size: 80px; margin-bottom: 24px; opacity: 0.5; } .user-empty-state h3 { font-size: 24px; font-weight: 600; color: #1A1A2E; margin-bottom: 16px; } .user-empty-state p { font-size: 16px; color: #64748B; } .user-detail-container { max-width: 900px; margin: 0 auto; padding: 40px; } @media (max-width: 768px) { .user-detail-container { padding: 24px 16px; } } .user-profile-card { color: #FFFFFF; margin-bottom: 32px; position: relative; overflow: hidden; } .user-profile-card::before { content: ""; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: rgba(255, 255, 255, 0.05); border-radius: 50%; } .user-profile-card .detail-grid { border: none; } .user-profile-header { display: flex; align-items: center; gap: 32px; position: relative; z-index: 1; } @media (max-width: 768px) { .user-profile-header { flex-direction: column; text-align: center; } } .user-profile-avatar { flex-shrink: 0; } .avatar-circle-large { width: 100px; height: 100px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; font-weight: 700; background: rgba(255, 255, 255, 0.2); color: #FFFFFF; border: 4px solid rgba(255, 255, 255, 0.3); box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); } .user-profile-info { flex: 1; } .user-profile-info h2 { font-size: 32px; font-weight: 700; margin-bottom: 8px; } .user-profile-info .user-profile-email { font-size: 16px; opacity: 0.9; margin-bottom: 16px; } .user-profile-badges { display: flex; gap: 8px; flex-wrap: wrap; } @media (max-width: 768px) { .user-profile-badges { justify-content: center; } } .user-profile-badges .user-status-badge, .user-profile-badges .user-role-badge { background: rgba(255, 255, 255, 0.2); color: #FFFFFF; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.3); } .detail-section { background: #FFFFFF; border-radius: 12px; padding: 32px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); margin-bottom: 24px; } .detail-section h2 { font-size: 20px; font-weight: 600; color: #1A1A2E; margin-bottom: 24px; padding-bottom: 8px; border-bottom: 2px solid #EFF6FF; } .detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; } @media (max-width: 768px) { .detail-grid { grid-template-columns: 1fr; } } .detail-item { display: flex; flex-direction: column; gap: 4px; } .detail-item.full-width { grid-column: 1/-1; } .detail-label { font-size: 14px; font-weight: 600; color: #64748B; display: flex; align-items: center; gap: 4px; } .detail-label i { color: #0049b4; font-size: 14px; } .detail-value { font-size: 16px; color: #1A1A2E; padding: 8px 0; } .status-indicator { display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; border-radius: 6px; font-size: 14px; font-weight: 500; } .status-indicator.status-active { background-color: rgba(107, 207, 127, 0.1); color: rgb(68.4897959184, 194.5102040816, 93.693877551); } .status-indicator.status-active .status-dot { background-color: #6BCF7F; } .status-indicator.status-inactive { background-color: rgba(100, 116, 139, 0.1); color: #64748B; } .status-indicator.status-inactive .status-dot { background-color: #64748B; } .status-dot { width: 8px; height: 8px; border-radius: 50%; animation: pulse 2s infinite; } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } .detail-actions { display: flex; gap: 16px; justify-content: center; padding-top: 24px; } @media (max-width: 768px) { .detail-actions { flex-direction: column; } } .inquiry-status-badge { display: inline-flex; align-items: center; justify-content: center; height: 30px; padding: 0 14px; border-radius: 50px; font-size: 15px; font-weight: 700; color: #FFFFFF; white-space: nowrap; } .inquiry-status-badge--completed { background-color: #0049b4; } .inquiry-status-badge--pending { background-color: #8c959f; } .inquiry-actions { display: flex; justify-content: center; margin-top: 40px; } .commission-container { max-width: 1400px; margin: 0 auto; } .wrap { max-width: 1400px; margin: 0 auto; background: #FFFFFF; padding: 24px; border-radius: 8px; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .searchInfo { display: inline-block; margin-right: 8px; margin-bottom: 16px; } .searchBox { background: #f8f9fa; padding: 20px; border-radius: 8px; margin-top: 20px; margin-bottom: 20px; } .searchBox.row-two { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; } .searchBox label { font-weight: 500; color: #1A1A2E; min-width: 80px; } .searchBox .form-control { padding: 6px 12px; border: 1px solid #E2E8F0; border-radius: 6px; font-size: 14px; min-width: 100px; } .form-inline { display: flex; align-items: center; gap: 10px; } .btnBox { margin-left: auto; } .btnBox .btn + .btn { margin-left: 5px; } #printBtn { display: none; } .commission-notice { color: #dc3545; margin-top: 30px; line-height: 1.6; } .voffset3 { margin-top: 30px; } .color_red { color: #FF6B6B; } .color_blue { color: #007bff; } .color_darkRed { color: #8b0000; } .table-responsive { overflow-x: auto; margin-top: 30px; } .table { width: 100%; border-collapse: collapse; font-size: 14px; } .table th { background: #F8FAFC; font-weight: 500; color: #1A1A2E; padding: 16px; text-align: center; border: 1px solid #E2E8F0; } .table td { padding: 16px; text-align: center; border: 1px solid #E2E8F0; } .table-bordered { border: 1px solid #E2E8F0; } .table-bordered th, .table-bordered td { border: 1px solid #E2E8F0; } .border-type { border: 2px solid #dee2e6; } .commission-table-wrapper { margin-top: 30px; } .commission-table-wrapper .table { border: 2px solid #dee2e6; } .summary-row { background-color: #fff3cd !important; } .summary-row td { font-weight: 600; } .summary-row .summary-amount { font-size: 16px; color: #007bff; } .text-center { text-align: center; } .text-right { text-align: right; } .text-left { text-align: left; } .bg-warning { background-color: #fff3cd !important; } .glyphicon-search::before { content: "🔍"; } .info-table { border-top: 10px solid #64748B; width: 100%; border-bottom: 2px solid #1A1A2E; margin-bottom: 40px; } .info-table th { text-align: left; padding: 16px 24px; font-weight: 600; background: none; border: none; } .info-table td { padding: 16px 24px; border: none; } .commission-table { width: 100%; margin-top: 40px; } .commission-table th, .commission-table td { border: 1px solid #999 !important; padding: 16px 24px; } .commission-table td { text-align: right; } .bg_ygreen { background-color: aquamarine; text-align: center; } .bg_skyBlue { background-color: skyblue; text-align: center; } .bg_yellow { background-color: yellow; text-align: center; } @media print { body { padding: 0; background: #FFFFFF; } .searchBox, .searchInfo, #printButton, #backButton, #printBtn { display: none !important; } @page { size: auto; margin: 0 0cm; } html { margin: 0 0cm; } } @media screen and (max-width: 1024px) { .wrap { padding: 16px; } .searchBox { padding: 16px; } .searchBox.row-two { flex-direction: column; align-items: flex-start; gap: 16px; } .form-inline { width: 100%; flex-direction: column; align-items: flex-start; } .form-inline label { min-width: auto; } .form-inline .form-control { width: 100%; } .btnBox { margin-left: 0; width: 100%; } .btnBox .btn { width: 100%; } .table-responsive { overflow-x: scroll; -webkit-overflow-scrolling: touch; } } body.commission-print-page { font-size: 12px; width: 600px; margin: 90px; font-family: "Noto Sans KR", -apple-system, sans-serif; } body.commission-print-page div { position: relative; } body.commission-print-page table { border-collapse: collapse; } body.commission-print-page table th, body.commission-print-page table td { padding: 5px 10px; } body.commission-print-page table tr { font-size: 12px; } body.commission-print-page h1 { text-align: center; } body.commission-print-page h1 img { width: 300px; } body.commission-print-page h2 { margin-top: 40px; float: left; } body.commission-print-page p { line-height: 1.6; } body.commission-print-page p[style*="float: right"] { margin-top: 25px; } body.commission-print-page .btn { padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; } body.commission-print-page .btn-primary { background: #667eea; color: white; } body.commission-print-page .btn-primary:hover { background: #5a67d8; } .terms-page { min-height: calc(100vh - 140px); background: #F8FAFC; padding: 48px 24px; } @media (max-width: 768px) { .terms-page { padding: 40px 16px; } } .terms-container { max-width: 1280px; margin: 0 auto; position: relative; padding: 20px; } .terms-header { background: #f6f9fb; border-radius: 12px; padding: 20px 40px; margin-bottom: 32px; } @media (max-width: 768px) { .terms-header { padding: 16px 24px; margin-bottom: 24px; } } .terms-header .page-title { font-size: 28px; font-weight: 700; color: #1A1A2E; margin: 0; line-height: 1; } @media (max-width: 768px) { .terms-header .page-title { font-size: 24px; } } .terms-header .page-description { font-size: 16px; color: #64748B; line-height: 1.6; margin-top: 8px; } @media (max-width: 768px) { .terms-header .page-description { font-size: 14px; } } .terms-content-card { background: #FFFFFF; border-radius: 12px; box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); overflow: hidden; } .terms-tabs { display: flex; gap: 0; background: transparent; padding: 0; border-bottom: none; } @media (max-width: 768px) { .terms-tabs { padding: 0; } } .terms-tabs .tab-link { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 18px 24px; font-size: 22px; font-weight: 700; color: #8c959f; text-decoration: none; background: #eceff4; transition: all 0.3s ease; text-align: center; position: relative; border-radius: 12px 12px 0 0; } @media (max-width: 768px) { .terms-tabs .tab-link { padding: 16px 16px; font-size: 16px; gap: 4px; } } .terms-tabs .tab-link i { display: none; } .terms-tabs .tab-link:hover { color: #0049b4; background: #e4e8ed; } .terms-tabs .tab-link.active { color: #FFFFFF; background: #3ba4ed; font-weight: 700; } .terms-selector { padding: 24px; background: #F6F9FB; border-bottom: none; } @media (max-width: 768px) { .terms-selector { padding: 16px 0; } } .terms-selector form { max-width: 340px; } .terms-selector .terms-select { width: 340px; height: 44px; padding: 9px 22px 9px 20px; background: #FFFFFF; border: 1px solid #dadada; border-radius: 12px; font-family: "Noto Sans KR", sans-serif; font-size: 14px; font-weight: 400; color: #212529; cursor: pointer; transition: all 0.3s ease; appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5' viewBox='0 0 10 5'%3E%3Cpath fill='%23515961' d='M5 5L0 0h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 10px 5px; } @media (max-width: 768px) { .terms-selector .terms-select { width: 100%; height: 40px; padding: 8px 36px 8px 16px; font-size: 12px; } } .terms-selector .terms-select:hover { border-color: #0049b4; } .terms-selector .terms-select:focus { outline: none; border-color: #0049b4; } .terms-selector .terms-select option { padding: 8px 16px; font-size: 14px; color: #212529; } .terms-content { padding: 0 32px; min-height: 400px; background-color: #F6F9FB; } @media (max-width: 768px) { .terms-content { padding: 24px 0; min-height: 300px; } } .terms-content .content-body { font-size: 16px; color: #1A1A2E; line-height: 1.8; word-wrap: break-word; } @media (max-width: 768px) { .terms-content .content-body { font-size: 14px; } } .terms-content .content-body p { margin-bottom: 16px; } .terms-content .content-body p:last-child { margin-bottom: 0; } .terms-content .content-body h1, .terms-content .content-body .chapter-title { font-size: 20px; font-weight: 700; color: #1A1A2E; margin-top: 32px; margin-bottom: 16px; line-height: 1.4; } .terms-content .content-body h1:first-child, .terms-content .content-body .chapter-title:first-child { margin-top: 0; } @media (max-width: 768px) { .terms-content .content-body h1, .terms-content .content-body .chapter-title { font-size: 18px; } } .terms-content .content-body h2, .terms-content .content-body .article-title { font-size: 18px; font-weight: 700; color: #1A1A2E; margin-top: 24px; margin-bottom: 8px; line-height: 1.4; } @media (max-width: 768px) { .terms-content .content-body h2, .terms-content .content-body .article-title { font-size: 16px; } } .terms-content .content-body h3 { font-size: 20px; font-weight: 600; color: #1A1A2E; margin-top: 16px; margin-bottom: 8px; } @media (max-width: 768px) { .terms-content .content-body h3 { font-size: 16px; } } .terms-content .content-body strong { font-weight: 700; color: #1A1A2E; } .terms-content .content-body em { font-style: italic; color: #64748B; } .terms-content .content-body a { color: #0049b4; text-decoration: underline; transition: all 0.3s ease; } .terms-content .content-body a:hover { color: #c3dfea; } .terms-content .content-body ul, .terms-content .content-body ol { margin: 16px 0; padding-left: 0; list-style: none; } @media (max-width: 768px) { .terms-content .content-body ul, .terms-content .content-body ol { padding-left: 0; } } .terms-content .content-body li { margin-bottom: 4px; line-height: 1.8; padding-left: 0; } .terms-content .content-body li:last-child { margin-bottom: 0; } .terms-content .content-body blockquote { border-left: 4px solid #0049b4; padding-left: 24px; margin: 24px 0; color: #64748B; font-style: italic; background: #F8FAFC; padding: 16px 24px; border-radius: 0 8px 8px 0; } @media (max-width: 768px) { .terms-content .content-body blockquote { padding: 8px 16px; } } .terms-content .content-body code { background: #F8FAFC; padding: 2px 6px; border-radius: 6px; font-family: "Fira Code", "Courier New", monospace; font-size: 0.9em; color: #0049b4; } .terms-content .content-body pre { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px; padding: 16px; overflow-x: auto; margin: 24px 0; } @media (max-width: 768px) { .terms-content .content-body pre { padding: 8px; } } .terms-content .content-body pre code { background: transparent; padding: 0; color: #1A1A2E; } .terms-content .content-body table { width: 100%; border-collapse: collapse; margin: 24px 0; border: 1px solid #E2E8F0; border-radius: 8px; overflow: hidden; font-size: 14px; } @media (max-width: 768px) { .terms-content .content-body table { font-size: 12px; } } .terms-content .content-body table th { background: #EFF6FF; padding: 8px 16px; text-align: left; font-weight: 600; color: #1A1A2E; border-bottom: 2px solid #E2E8F0; } @media (max-width: 768px) { .terms-content .content-body table th { padding: 4px 8px; } } .terms-content .content-body table td { padding: 8px 16px; border-bottom: 1px solid #E2E8F0; color: #1A1A2E; } @media (max-width: 768px) { .terms-content .content-body table td { padding: 4px 8px; } } .terms-content .content-body table tr:last-child td { border-bottom: none; } .terms-content .content-body table tr:hover { background: #F8FAFC; } .terms-content .content-body hr { border: none; border-top: 1px solid #E2E8F0; margin: 40px 0; } .terms-content .content-body .article { margin-top: 40px; padding-top: 24px; border-top: 1px solid #E2E8F0; } .terms-content .content-body .article:first-child { margin-top: 0; padding-top: 0; border-top: none; } .terms-content .content-body .section-number { display: inline-block; min-width: 30px; color: #0049b4; font-weight: 700; } .terms-selector .select-items::-webkit-scrollbar { width: 6px; } .terms-selector .select-items::-webkit-scrollbar-track { background: #F8FAFC; border-radius: 6px; } .terms-selector .select-items::-webkit-scrollbar-thumb { background: #0049b4; border-radius: 6px; } .terms-selector .select-items::-webkit-scrollbar-thumb:hover { background: #c3dfea; } .api-statistics-page { min-height: calc(100vh - 112px); padding-bottom: 48px; } .statistics-section { background-color: #F6F9FB; padding: 32px; border-radius: 12px; } .visually-hidden, .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } .statistics-title-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; background-color: #F6F9FB; border-radius: 12px; height: 70px; margin-top: 24px; padding: 0 32px; } .statistics-title-bar .page-title { font-size: 24px; font-weight: 700; color: #1A1A2E; margin: 0; } .date-range-picker { display: flex; align-items: center; gap: 8px; } .date-input-group { display: flex; align-items: center; gap: 8px; background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 50px; padding: 8px 24px; } .date-input { border: none; background: transparent; font-size: 14px; color: #1A1A2E; padding: 0; width: 110px; } .date-input:focus { outline: none; } .date-separator { color: #64748B; font-size: 14px; } .btn-search-circle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: #0049b4; border: none; border-radius: 50%; cursor: pointer; transition: all 0.15s ease; } .btn-search-circle svg { stroke: #FFFFFF; } .btn-search-circle:hover { background: rgb(0, 52.3166666667, 129); } .statistics-summary-section { display: flex; gap: 32px; margin-bottom: 32px; } @media (max-width: 1024px) { .statistics-summary-section { flex-direction: column; } } .summary-left-card { background: #FFFFFF; border-radius: 12px; padding: 32px; min-width: 280px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); } .statistics-tabs { display: flex; gap: 8px; margin-bottom: 24px; } .tab-btn { padding: 8px 24px; border: none; border-radius: 50px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.15s ease; background: #E5E7EB; color: #64748B; } .tab-btn:hover { background: rgb(214.5869565217, 217.6956521739, 223.9130434783); } .tab-btn.active { background: #0049b4; color: #FFFFFF; } .total-api-text { font-size: 16px; color: #1A1A2E; margin-bottom: 24px; } .total-api-text .highlight-count { color: #0049b4; font-size: 24px; font-weight: 700; } .summary-stats { display: flex; flex-direction: column; gap: 16px; } .stat-item { display: flex; align-items: center; gap: 8px; } .stat-item .stat-icon { display: flex; align-items: center; justify-content: center; } .stat-item .stat-label { font-size: 14px; color: #64748B; min-width: 32px; } .stat-item .stat-value { font-size: 18px; font-weight: 700; color: #1A1A2E; } .stat-item .stat-percent { font-size: 14px; color: #64748B; } .summary-chart-card { flex: 1; display: flex; align-items: center; justify-content: center; padding: 32px; } .donut-chart-container { position: relative; width: 220px; height: 220px; } .donut-chart-svg { width: 100%; height: 100%; } .donut-labels { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; display: flex; flex-direction: column; gap: 4px; } .donut-labels .donut-label-success { font-size: 12px; color: #5B9BD5; font-weight: 500; } .donut-labels .donut-label-failed { font-size: 12px; color: #FFB6C1; font-weight: 500; } .summary-rate-card { display: flex; flex-direction: column; justify-content: center; gap: 24px; padding: 32px; } .rate-item { display: flex; align-items: center; gap: 8px; } .rate-item .rate-dot { width: 10px; height: 10px; border-radius: 50%; } .rate-item .rate-dot.success { background: #5B9BD5; } .rate-item .rate-dot.fail { background: #FFB6C1; } .rate-item .rate-label { font-size: 14px; color: #64748B; min-width: 40px; } .rate-item .rate-value { font-size: 32px; font-weight: 700; } .rate-item .rate-value .rate-unit { font-size: 20px; } .rate-item.success-rate .rate-value { color: #5B9BD5; } .rate-item.fail-rate .rate-value { color: #FFB6C1; } .api-stats-table-section { background: #D6EAF8; border-radius: 12px; padding: 32px; } .table-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; } .table-title { display: flex; align-items: center; gap: 8px; } .table-title h3 { font-size: 18px; font-weight: 600; color: #1A1A2E; margin: 0; } .btn-download { display: flex; align-items: center; gap: 4px; padding: 8px 16px; background: #4A5568; border: none; border-radius: 8px; font-size: 14px; color: #FFFFFF; cursor: pointer; transition: all 0.15s ease; } .btn-download svg { stroke: #FFFFFF; } .btn-download:hover { background: rgb(52.797752809, 60.6460674157, 74.202247191); } .api-stats-table-wrapper { overflow-x: auto; } .api-stats-table { width: 100%; border-collapse: collapse; background: transparent; } .api-stats-table th, .api-stats-table td { padding: 16px 24px; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.5); } .api-stats-table th { font-size: 14px; font-weight: 500; color: #64748B; background: transparent; } .api-stats-table td { font-size: 14px; color: #1A1A2E; background: #FFFFFF; } .api-stats-table tbody tr:first-child td:first-child { border-radius: 8px 0 0 0; } .api-stats-table tbody tr:first-child td:last-child { border-radius: 0 8px 0 0; } .api-stats-table tbody tr:last-child td { border-bottom: none; } .api-stats-table .total-row td { background: #E8F4FD; font-weight: 500; } .api-stats-table .total-row td:first-child { border-radius: 0 0 0 8px; } .api-stats-table .total-row td:last-child { border-radius: 0 0 8px 0; } .api-name { display: flex; align-items: center; gap: 8px; font-weight: 500; } .api-name .api-icon { flex-shrink: 0; } .text-center { text-align: center; } .stats-bar { min-width: 200px; } .stacked-bar { display: flex; height: 12px; border-radius: 50px; overflow: hidden; background: #E5E7EB; } .stacked-bar .bar-success { background: #5B9BD5; height: 100%; } .stacked-bar .bar-fail { background: #C9A227; height: 100%; } .total-row .stacked-bar .bar-success { background: #5B9BD5; } .total-row .stacked-bar .bar-fail { background: #E5E7EB; } .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; } @media (max-width: 768px) { .container { padding: 0; } } .d-none { display: none !important; } .d-block { display: block !important; } .d-inline-block { display: inline-block !important; } .d-flex { display: flex !important; } .d-inline-flex { display: inline-flex !important; } .d-grid { display: grid !important; } .flex-center { display: flex; justify-content: center; align-items: center; } .flex-between { display: flex; justify-content: space-between; align-items: center; } .flex-column { flex-direction: column; } .flex-wrap { flex-wrap: wrap; } .align-center { align-items: center; } .align-start { align-items: flex-start; } .align-end { align-items: flex-end; } .justify-center { justify-content: center; } .justify-start { justify-content: flex-start; } .justify-end { justify-content: flex-end; } .justify-between { justify-content: space-between; } .justify-around { justify-content: space-around; } .gap-xs { gap: 4px; } .gap-sm { gap: 8px; } .gap-md { gap: 16px; } .gap-lg { gap: 24px; } .gap-xl { gap: 32px; } .m-0 { margin: 0 !important; } .mt-0 { margin-top: 0 !important; } .mb-0 { margin-bottom: 0 !important; } .ml-0 { margin-left: 0 !important; } .mr-0 { margin-right: 0 !important; } .mx-0 { margin-left: 0 !important; margin-right: 0 !important; } .my-0 { margin-top: 0 !important; margin-bottom: 0 !important; } .m-xs { margin: 4px !important; } .mt-xs { margin-top: 4px !important; } .mb-xs { margin-bottom: 4px !important; } .ml-xs { margin-left: 4px !important; } .mr-xs { margin-right: 4px !important; } .mx-xs { margin-left: 4px !important; margin-right: 4px !important; } .my-xs { margin-top: 4px !important; margin-bottom: 4px !important; } .m-sm { margin: 8px !important; } .mt-sm { margin-top: 8px !important; } .mb-sm { margin-bottom: 8px !important; } .ml-sm { margin-left: 8px !important; } .mr-sm { margin-right: 8px !important; } .mx-sm { margin-left: 8px !important; margin-right: 8px !important; } .my-sm { margin-top: 8px !important; margin-bottom: 8px !important; } .m-md { margin: 16px !important; } .mt-md { margin-top: 16px !important; } .mb-md { margin-bottom: 16px !important; } .ml-md { margin-left: 16px !important; } .mr-md { margin-right: 16px !important; } .mx-md { margin-left: 16px !important; margin-right: 16px !important; } .my-md { margin-top: 16px !important; margin-bottom: 16px !important; } .m-lg { margin: 24px !important; } .mt-lg { margin-top: 24px !important; } .mb-lg { margin-bottom: 24px !important; } .ml-lg { margin-left: 24px !important; } .mr-lg { margin-right: 24px !important; } .mx-lg { margin-left: 24px !important; margin-right: 24px !important; } .my-lg { margin-top: 24px !important; margin-bottom: 24px !important; } .m-xl { margin: 32px !important; } .mt-xl { margin-top: 32px !important; } .mb-xl { margin-bottom: 32px !important; } .ml-xl { margin-left: 32px !important; } .mr-xl { margin-right: 32px !important; } .mx-xl { margin-left: 32px !important; margin-right: 32px !important; } .my-xl { margin-top: 32px !important; margin-bottom: 32px !important; } .m-2xl { margin: 40px !important; } .mt-2xl { margin-top: 40px !important; } .mb-2xl { margin-bottom: 40px !important; } .ml-2xl { margin-left: 40px !important; } .mr-2xl { margin-right: 40px !important; } .mx-2xl { margin-left: 40px !important; margin-right: 40px !important; } .my-2xl { margin-top: 40px !important; margin-bottom: 40px !important; } .m-3xl { margin: 48px !important; } .mt-3xl { margin-top: 48px !important; } .mb-3xl { margin-bottom: 48px !important; } .ml-3xl { margin-left: 48px !important; } .mr-3xl { margin-right: 48px !important; } .mx-3xl { margin-left: 48px !important; margin-right: 48px !important; } .my-3xl { margin-top: 48px !important; margin-bottom: 48px !important; } .m-4xl { margin: 64px !important; } .mt-4xl { margin-top: 64px !important; } .mb-4xl { margin-bottom: 64px !important; } .ml-4xl { margin-left: 64px !important; } .mr-4xl { margin-right: 64px !important; } .mx-4xl { margin-left: 64px !important; margin-right: 64px !important; } .my-4xl { margin-top: 64px !important; margin-bottom: 64px !important; } .m-auto { margin: auto !important; } .mt-auto { margin-top: auto !important; } .mb-auto { margin-bottom: auto !important; } .ml-auto { margin-left: auto !important; } .mr-auto { margin-right: auto !important; } .mx-auto { margin-left: auto !important; margin-right: auto !important; } .my-auto { margin-top: auto !important; margin-bottom: auto !important; } .p-0 { padding: 0 !important; } .pt-0 { padding-top: 0 !important; } .pb-0 { padding-bottom: 0 !important; } .pl-0 { padding-left: 0 !important; } .pr-0 { padding-right: 0 !important; } .px-0 { padding-left: 0 !important; padding-right: 0 !important; } .py-0 { padding-top: 0 !important; padding-bottom: 0 !important; } .p-xs { padding: 4px !important; } .pt-xs { padding-top: 4px !important; } .pb-xs { padding-bottom: 4px !important; } .pl-xs { padding-left: 4px !important; } .pr-xs { padding-right: 4px !important; } .px-xs { padding-left: 4px !important; padding-right: 4px !important; } .py-xs { padding-top: 4px !important; padding-bottom: 4px !important; } .p-sm { padding: 8px !important; } .pt-sm { padding-top: 8px !important; } .pb-sm { padding-bottom: 8px !important; } .pl-sm { padding-left: 8px !important; } .pr-sm { padding-right: 8px !important; } .px-sm { padding-left: 8px !important; padding-right: 8px !important; } .py-sm { padding-top: 8px !important; padding-bottom: 8px !important; } .p-md { padding: 16px !important; } .pt-md { padding-top: 16px !important; } .pb-md { padding-bottom: 16px !important; } .pl-md { padding-left: 16px !important; } .pr-md { padding-right: 16px !important; } .px-md { padding-left: 16px !important; padding-right: 16px !important; } .py-md { padding-top: 16px !important; padding-bottom: 16px !important; } .p-lg { padding: 24px !important; } .pt-lg { padding-top: 24px !important; } .pb-lg { padding-bottom: 24px !important; } .pl-lg { padding-left: 24px !important; } .pr-lg { padding-right: 24px !important; } .px-lg { padding-left: 24px !important; padding-right: 24px !important; } .py-lg { padding-top: 24px !important; padding-bottom: 24px !important; } .p-xl { padding: 32px !important; } .pt-xl { padding-top: 32px !important; } .pb-xl { padding-bottom: 32px !important; } .pl-xl { padding-left: 32px !important; } .pr-xl { padding-right: 32px !important; } .px-xl { padding-left: 32px !important; padding-right: 32px !important; } .py-xl { padding-top: 32px !important; padding-bottom: 32px !important; } .p-2xl { padding: 40px !important; } .pt-2xl { padding-top: 40px !important; } .pb-2xl { padding-bottom: 40px !important; } .pl-2xl { padding-left: 40px !important; } .pr-2xl { padding-right: 40px !important; } .px-2xl { padding-left: 40px !important; padding-right: 40px !important; } .py-2xl { padding-top: 40px !important; padding-bottom: 40px !important; } .p-3xl { padding: 48px !important; } .pt-3xl { padding-top: 48px !important; } .pb-3xl { padding-bottom: 48px !important; } .pl-3xl { padding-left: 48px !important; } .pr-3xl { padding-right: 48px !important; } .px-3xl { padding-left: 48px !important; padding-right: 48px !important; } .py-3xl { padding-top: 48px !important; padding-bottom: 48px !important; } .p-4xl { padding: 64px !important; } .pt-4xl { padding-top: 64px !important; } .pb-4xl { padding-bottom: 64px !important; } .pl-4xl { padding-left: 64px !important; } .pr-4xl { padding-right: 64px !important; } .px-4xl { padding-left: 64px !important; padding-right: 64px !important; } .py-4xl { padding-top: 64px !important; padding-bottom: 64px !important; } .w-25 { width: 25%; } .w-50 { width: 50%; } .w-75 { width: 75%; } .w-100 { width: 100%; } .w-auto { width: auto; } .h-25 { height: 25%; } .h-50 { height: 50%; } .h-75 { height: 75%; } .h-100 { height: 100%; } .h-auto { height: auto; } .vh-100 { height: 100vh; } .position-relative { position: relative; } .position-absolute { position: absolute; } .position-fixed { position: fixed; } .position-sticky { position: sticky; } .bg-primary { background: #0049b4; } .bg-secondary { background: #c3dfea; } .bg-white { background: #FFFFFF; } .bg-gray { background: #F8FAFC; } .bg-light { background: #EFF6FF; } .border { border: 1px solid #E2E8F0; } .border-0 { border: none !important; } .border-top { border-top: 1px solid #E2E8F0; } .border-bottom { border-bottom: 1px solid #E2E8F0; } .border-left { border-left: 1px solid #E2E8F0; } .border-right { border-right: 1px solid #E2E8F0; } .border-primary { border-color: #0049b4; } .rounded-0 { border-radius: 0; } .rounded-sm { border-radius: 6px; } .rounded { border-radius: 8px; } .rounded-lg { border-radius: 12px; } .rounded-xl { border-radius: 16px; } .rounded-full { border-radius: 50px; } .rounded-circle { border-radius: 50%; } .shadow-none { box-shadow: none !important; } .shadow-sm { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); } .shadow { box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1); } .shadow-lg { box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15); } .shadow-xl { box-shadow: 0 16px 40px rgba(75, 155, 255, 0.2); } .overflow-hidden { overflow: hidden; } .overflow-auto { overflow: auto; } .overflow-x-hidden { overflow-x: hidden; } .overflow-y-hidden { overflow-y: hidden; } .overflow-x-auto { overflow-x: auto; } .overflow-y-auto { overflow-y: auto; } .z-0 { z-index: 0; } .z-10 { z-index: 10; } .z-20 { z-index: 20; } .z-30 { z-index: 30; } .z-40 { z-index: 40; } .z-50 { z-index: 50; } @media (max-width: 768px) { .sm-hide { display: none !important; } } @media (max-width: 1024px) { .md-hide { display: none !important; } } @media (min-width: 769px) { .mobile-only { display: none !important; } } @media (max-width: 768px) { .desktop-only { display: none !important; } } .pc { display: block; } @media (max-width: 768px) { .pc { display: none !important; } } .mobile { display: none; } @media (max-width: 768px) { .mobile { display: block !important; } } .cursor-pointer { cursor: pointer; } .cursor-default { cursor: default; } .cursor-not-allowed { cursor: not-allowed; } .opacity-0 { opacity: 0; } .opacity-25 { opacity: 0.25; } .opacity-50 { opacity: 0.5; } .opacity-75 { opacity: 0.75; } .opacity-100 { opacity: 1; } .transition { transition: all 0.3s ease; } .transition-fast { transition: all 0.15s ease; } .transition-slow { transition: all 0.5s ease; } .transition-none { transition: none; } .visually-hidden, .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } /*# sourceMappingURL=main.css.map */