@charset "utf-8";
/* CSS Document */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif, '맑은 고딕';
  background-color: #f9f9f9;
}

.main-container {
  max-width: 460px;
  margin: 0 auto;
  padding: 0 16px 20px;
}

.top-header {
  background-color: #103d65;
  border-bottom:2px solid rgba(255,255,255,0.15);
  box-shadow:0 2px 8px rgba(0,0,0,0.12);
}

.header-content {
  max-width: 460px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-left { height: 40px; }

.menu-toggle {
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.welcome-text {
  margin: 18px 0 14px;
  font-size: 24px;
  font-weight: bold;
  line-height: 2.4;
  text-align:center;
}

.login-area {
  background: linear-gradient(135deg, #0d3a63, #0b5c9e);
  box-shadow:0 8px 20px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 24px 22px 20px;
  margin: 14px 0 18px;
  color: #fff;
}

.login-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}

.login-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.login-row label {
  width: 64px;
  font-size: 14px;
  font-weight: 600;
}

.login-row input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding: 6px 4px;
  font-size: 14px;
  color: #fff;
}

.login-row input::placeholder {
  color: rgba(255,255,255,0.6);
}

.login-row input:focus {
  outline: none;
  border-bottom-color: #fff;
}
.login-save{
margin-top:10px;
font-size:13px;
color:#fff;
}

.login-save input{
margin-right:5px;
}
.login-btn {
  margin-top: 14px;
  width: 100%;
  padding: 10px;
  background: #fff;
  color: #103d65;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.menu-section {
  background-color: #e7f4fa;
  padding: 28px 0 30px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.menu-full {
  max-width: 460px;
  margin: 0 auto;
  padding: 0 16px;
}

.menu-item {
  width: 100%;
  height: 150px;
  background: linear-gradient(145deg, #0872be, #142f57);
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.menu-item .icon img {
  width: 56px;
  height: 56px;
}

.menu-item .label {
  margin-left: 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.sub-label {
  display: block;
  font-size: 14px;
  font-weight: normal;
  opacity: 0.9;
}

.notice-box {
  background: #fff;
  padding: 18px;
  margin: 24px 0;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.notice-box h3 {
  font-size: 16px;
  color: #0277BD;
  margin-bottom: 8px;
}

.ad-box {
  margin: 24px auto 0px;
  border-radius: 12px;
  overflow: hidden;
}

.ad-box img {
  width: 100%;
  border-radius: 12px;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  font-size: 14px;
}

.notice-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0277BD;
}
.system-footer{
text-align:center;
font-size:13px;
color:#777;
line-height:1.6;
padding:25px 10px 40px 10px;
}
/* 시스템 안내 */

.system-desc{
background:#eef3f8;
border-radius:10px;
padding:14px 18px;
font-size:14px;
color:#444;
margin-bottom:18px;;
text-align:center;
line-height:1.7;
word-break:keep-all;
}


/* 로그인 하단 링크 */


.login-links{
text-align:center;
margin-top:12px;
font-size:13px;
}

.login-links a{
color:#ffffff;
margin:0 8px;
text-decoration:none;
opacity:0.9;
}

.login-links a:hover{
opacity:1;
text-decoration:underline;
}


/* footer */

.system-footer{
background:#f4f6f8;
padding:20px 10px;
text-align:center;
font-size:13px;
color:#666;
line-height:1.8;
margin-top:10px;
}

html, body{
height:100%;
}

body{
display:flex;
flex-direction:column;
min-height:100vh;
}

.main-container{
flex:1;
}

/* SweetAlert 텍스트 크기 */
.swal2-html-container{
    font-size:16px !important;
}

/* OK 버튼 글자 */
.swal2-confirm{
    font-size:14px !important;
}

/* 제목 (있을 경우) */
.swal2-title{
    font-size:18px !important;
}

@media (max-width:768px){
.system-desc{
line-height:1.8;
}
}