@import url('https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css');

body {
    font-family: "NanumSquare", sans-serif;
}

*{margin: 0;padding: 0;}
li{list-style: none;}
a{text-decoration: none;color: #000;}
button{
    border: none;
    background-color: none;
    padding: 5px 15px;
    transition: all 0.2s;
    font-size: 14px;
}
/* button 공통-------------------------- */
.gr_btn{
    background-color: #d8d8d8;
    color: #555;
    font-weight: 700;
}
.gr_btn:hover{
    background-color: #c4c4c4;
}
.b_btn{
    background: linear-gradient(135deg, rgb(16, 68, 113) 0%, rgb(32, 96, 153) 100%);
    color: #fff;
    font-weight: 700;
}
.b_btn:hover:not(:disabled){
    background: linear-gradient(135deg, rgb(32, 96, 153) 0%, rgb(16, 68, 113) 100%);
}
.b_btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.pb_btn{
    background-color: rgb(94, 136, 172);
    color: #fff;
}
.pb_btn:hover{
    background-color: rgb(113, 157, 196);
}

/* 로그인 MANAGER-MN-01========================== */
.loginwrap{
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px 40px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    background-attachment: fixed;
    position: relative;
}
.loginwrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(39, 174, 96, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.login_logo{
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.6s ease-out;
}
.login_logo img{
    width: 250px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}
.login_logo img:hover{
    transform: scale(1.05);
}
.logintitle{
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.login{
    background-color: #ffffff;
    border: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}
.logtoptxt{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
    line-height: 1.6;
}
.logtoptxt br{
    display: none;
}
/* 사이버/집합 버튼 */
.log_edubtn_wrap{
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}
.log_edubtn{
    width: 200px;
    border: 2px solid #2f7ac1;
    background-color: #fff;
    font-size: 16px;
    color: #000;
    font-weight: 700;
    transition: all 0s;
    border-radius: 0;
    padding: 10px;
    cursor: pointer !important;
    position: relative;
}
.log_edubtn * {
    cursor: pointer !important;
    pointer-events: none;
}
.log_edubtn:hover,
.log_edubtn:hover * {
    cursor: pointer !important;
}
.log_edubtn.on{
    background-color: #2f7ac1;
    border: 2px solid transparent;
    color: #fff;
    font-weight: 500;
}
.log_edubtn.on * {
    cursor: pointer !important;
}
.hidden_radio{
    display: none;
    pointer-events: none;
}
/* ID/비밀번호 입력 - 새로운 디자인 */
.login_input_section{
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}
.login_input_wrap{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
    width: 100%;
}
.login_input_group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.login_label{
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0;
}
.login_input{
    width: 100%;
    height: 60px;
    border-radius: 12px;
    border: 2px solid #e1e8ed;
    background-color: #ffffff;
    padding: 0 20px;
    font-weight: 500;
    font-size: 16px;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.login_input::placeholder{
    color: #9aa5b1;
    font-weight: 400;
    font-size: 15px;
}
.login_input:focus{
    outline: none;
    border-color: #3498db;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    transform: translateY(-1px);
}
.login_input:hover:not(:focus) {
    border-color: #cbd5e0;
    background-color: #f8f9fa;
}
.login_btn{
    width: 110px;
    height: 111px;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    border: none;
    box-shadow: 0 4px 12px rgba(26, 32, 44, 0.3);
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.login_btn:hover{
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 32, 44, 0.4);
    color: #ffffff;
}
.login_btn:active{
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(26, 32, 44, 0.3);
}
/* 기존 스타일 호환성 유지 */
.connect_wrap{
    display: flex;
    gap: 12px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.connect_box_wrap{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.connect_box{
    display: flex;
    align-items: center;
    gap: 12px;
}
.log_intxt{
    width: 100px;
    text-align: end;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 700;
    color: #1a202c;
    flex-shrink: 0;
}
.login_in{
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: 2px solid #e1e8ed;
    background-color: #ffffff;
    padding-left: 16px;
    font-weight: 600;
    font-size: 15px;
    color: #1a202c;
    transition: all 0.3s ease;
}
.login_in::placeholder{
    color: #718096;
    font-weight: 400;
}
.login_in:focus{
    outline: none;
    border-color: #667eea;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}
.login_in:hover:not(:focus) {
    border-color: #cbd5e0;
    background-color: #fff;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* 이용약관/크롬 브라우저 다운로드 */
.log_re_box{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border-bottom: 1px solid #e1e8ed;
    padding-bottom: 20px;
}
.log_re_box00{
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.log_re_txt01,
.log_re_txt02{
    margin-bottom: 12px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}
.log_re_txt01{
    color: #2d3748;
    font-weight: 600;
}
.log_re_txt02{
    color: #4a5568;
    font-weight: 600;
}
.log_re_btn01,
.log_re_btn02{
    width: 200px;
    margin: 0 auto;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.log_re_btn01{
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(149, 165, 166, 0.3);
}
.log_re_btn01:hover{
    background: linear-gradient(135deg, #7f8c8d 0%, #95a5a6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 165, 166, 0.4);
}
.log_re_btn02{
    padding: 0;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.log_re_btn02:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.log_re_btn02 a{
    display: block;
    padding: 10px 20px;
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
}
/* 배너이미지 */
.login_banner{
    max-width: 558px;
    max-height: 100px;
    text-align: center;
    margin-top: 25px;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.login_banner:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.login_banner img{
    width: 100%;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 12px;
    display: block;
    object-fit: contain;
}
@media screen and (max-width:580px){
    /* 이용약관/크롬 브라우저 다운로드 */
    .log_re_txt01 br{
        display: none;
    }
}
@media screen and (max-width:500px){
    .loginwrap{
        padding: 60px 20px 30px;
    }
    .login_logo{
        margin-bottom: 25px;
    }
    .login_logo img{
        width: 200px;
    }
    .logintitle{
        font-size: 28px;
        margin-bottom: 10px;
    }
    .logtoptxt{
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    .logtoptxt br{
        display: block;
    }
    .login{
        padding: 30px 25px;
        border-radius: 16px;
    }
    /* 사이버/집합 버튼 */
    .log_edubtn{
        font-size: 14px;
        padding: 12px 16px;
    }
    /* ID/비밀번호 입력 */
    .login_input_section{
        margin-bottom: 20px;
    }
    .login_input_wrap{
        gap: 18px;
    }
    .login_input_group{
        gap: 8px;
    }
    .login_label{
        font-size: 15px;
    }
    .login_input{
        height: 56px;
        font-size: 15px;
        padding: 0 18px;
    }
    .login_input::placeholder{
        font-size: 14px;
    }
    .login_btn{
        width: 110px;
        height: 103px;
        font-size: 16px;
    }
    /* 기존 스타일 호환성 */
    .connect_wrap{
        margin-bottom: 15px;
    }
    .log_intxt{
        font-size: 17px;
        width: 90px;
    }
    .login_in{
        height: 44px;
        font-size: 14px;
    }
}
@media screen and (max-width:430px){
    .loginwrap{
        padding: 50px 15px 25px;
    }
    .login{
        padding: 25px 20px;
        border-radius: 16px;
    }
    .login_logo img{
        width: 180px;
    }
    .logintitle{
        font-size: 24px;
        margin-bottom: 8px;
    }
    .logtoptxt{
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    /* 사이버/집합 버튼 */
    .log_edubtn_wrap{
        flex-direction: column;
        gap: 10px;
        margin-bottom: 25px;
    }
    .log_edubtn{
        width: 100%;
        padding: 14px 20px;
    }
    .log_edubtn br{
        display: none;
    }
    /* ID/비밀번호 입력 */
    .login_input_section{
        margin-bottom: 18px;
    }
    .login_input_wrap{
        gap: 16px;
    }
    .login_input_group{
        gap: 8px;
    }
    .login_label{
        font-size: 14px;
    }
    .login_input{
        height: 52px;
        font-size: 14px;
        padding: 0 16px;
    }
    .login_input::placeholder{
        font-size: 13px;
    }
    .connect_wrap{
        flex-direction: column;
        gap: 10px;
    }
    .login_btn{
        width: 100%;
        height: 56px;
        margin: 0 auto;
    }
    /* 기존 스타일 호환성 */
    .connect_wrap{
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }
    .connect_box{
        gap: 10px;
    }
    .log_intxt{
        font-size: 16px;
        width: 80px;
    }
    .login_in{
        height: 44px;
    }
    /* 이용약관/크롬 브라우저 다운로드 */
    .log_re_txt01,
    .log_re_txt02{
        font-size: 13px;
    }
    .log_re_btn01,
    .log_re_btn02{
        width: 100%;
    }
}
@media screen and (max-width:370px){
    .loginwrap{
        padding: 40px 12px 20px;
    }
    .login_logo img{
        width: 160px;
    }
    .logintitle{
        font-size: 22px;
    }
    .logtoptxt{
        font-size: 13px;
        margin-bottom: 20px;
    }
    .login{
        padding: 20px 15px;
    }
    /* 사이버/집합 버튼 */
    .log_edubtn_wrap{
        margin-bottom: 20px;
    }
    .log_edubtn{
        font-size: 13px;
        padding: 12px 16px;
    }
    /* ID/비밀번호 입력 */
    .login_input_section{
        margin-bottom: 15px;
    }
    .login_input_wrap{
        gap: 14px;
    }
    .login_input_group{
        gap: 7px;
    }
    .login_label{
        font-size: 13px;
    }
    .login_input{
        height: 50px;
        font-size: 14px;
        padding: 0 14px;
    }
    .login_input::placeholder{
        font-size: 13px;
    }
    .login_btn{
        height: 52px;
        font-size: 15px;
    }
    /* 기존 스타일 호환성 */
    .connect_wrap{
        margin-bottom: 15px;
    }
    .connect_box{
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .log_intxt{
        width: 100%;
        font-size: 15px;
        text-align: start;
    }
    .login_in{
        height: 42px;
        padding-left: 12px;
        font-size: 14px;
    }
    /* 이용약관/크롬 브라우저 다운로드 */
    .log_re_txt01,
    .log_re_txt02{
        font-size: 12px;
    }
    .log_re_box{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}

/* 서비스 이용 약관(MANAGER-POP-01) */
.managerpop01wrap{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0d0d0d49;
    visibility: hidden;
    display: none;
    transition: opacity .2s, visibility .2s;
    z-index: 1002;
}
.managerpop01wrap.active{
    display: block;
    visibility: visible;
}
.managerpop01{
    background-color: #fff;
    width: 500px;
    height: 400px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top:130px;
    box-shadow: 0px 0px 10px #4848485c;
}
.poptop{
    background: rgb(16, 68, 113);
    height: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.poptop h5{
    margin: 0 auto;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    vertical-align: middle;
    letter-spacing: -0.3px;
}
.poptopclose{
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}
.poptopclose:hover{
    background-color: rgba(255, 255, 255, 0.2);
}
.popclosebar{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    transform-origin: center;
}
.popclosebar:first-child{
    transform: translate(-50%, -50%) rotate(45deg);
}
.popclosebar:last-child{
    transform: translate(-50%, -50%) rotate(-45deg);
}
.popmiddle{
    padding: 20px 20px 10px 20px;
}
.pop01txt{
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 20px;
    height: 285px;
    overflow-y: scroll;
}
.pop01txt p{
    font-size: 14px;
    color: #333;
    font-weight: 700;
}
.popbottom{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 25px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}
.popclosebtn{
    height: 40px;
    padding: 0 24px;
    font-size: 15px;
    background-color: #6c757d;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.popclosebtn:hover{
    background-color: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.popyesbtn{
    height: 40px;
    padding: 0 24px;
    font-size: 15px;
    background: rgb(16, 68, 113);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(16, 68, 113, 0.3);
}
.popyesbtn:hover{
    background: rgb(32, 96, 153);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 68, 113, 0.4);
}
@media screen and (max-width:500px){
    .managerpop01{
        width: 350px;
    }
    .pop01txt{
        padding: 10px;
    }
    .poptop{
        height: 40px;
    }
    .poptop h5{
        font-size: 19px;
    }
    .popclosebtn{
        height: 28px;
        font-size: 14px;
    }
}
@media screen and (max-width:420px){
    .popmiddle{
        padding: 10px;
    }
    .managerpop01{
        width: 290px;
        height: 385px;
    }
}



/* 인증번호 입력 MANAGER-MN-02========================== */
.log2toptxt{
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
    line-height: 1.6;
}
/* SMS 인증 섹션 */
.sms_cert_section{
    margin-bottom: 30px;
}
.connect_wrap00{
    display: flex;
    gap: 12px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.connect_wrap00 #input_wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 0;
}
.connect_wrap00 #input_wrap .connect_box {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.cert_label{
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0;
    text-align: center;
}
.connect_wrap00 #input_wrap .login_in {
    width: 100%;
    max-width: 400px;
    height: 56px;
    font-size: 20px;
    text-align: center;
    letter-spacing: 10px;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid #3498db;
    background-color: #ffffff;
    padding: 0 20px;
    color: #1a202c;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin: 0 auto;
}
.connect_wrap00 #input_wrap .login_in:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.15);
    transform: translateY(-1px);
}
.connect_wrap00 #input_wrap .login_in:hover:not(:focus) {
    border-color: #5dade2;
    background-color: #f8f9fa;
}
.connect_wrap00 #input_wrap .login_in::placeholder {
    color: #a0aec0;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 16px;
}
.vercom_btn{
    width: 140px;
    height: 56px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}
.connect_wrap00[style*="flex-direction: column"] .vercom_btn {
    width: 100%;
    max-width: 400px;
    margin-top: 12px;
}
.vercom_btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.vercom_btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.vercom_btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
/* 다음단계 */
.log_re_box01{
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 35px;
}
.n_button{
    margin: 0 auto;
    width: 200px;
    height: 40px;
    font-size: 16px;
}
@media screen and (max-width:500px){
    .log2toptxt{
        font-size: 16px;
        margin-bottom: 25px;
    }
    /* 인증번호 입력 */
    .sms_cert_section{
        margin-bottom: 25px;
    }
    .connect_wrap00{
        gap: 10px;
    }
    .cert_label{
        font-size: 15px;
    }
    .connect_wrap00 #input_wrap {
        max-width: 100%;
    }
    .connect_wrap00 #input_wrap .login_in {
        width: 100%;
        height: 52px;
        font-size: 18px;
        letter-spacing: 8px;
    }
    .vercom_btn{
        width: 130px;
        height: 52px;
        font-size: 16px;
    }
    .connect_wrap00[style*="flex-direction: column"] .vercom_btn {
        width: 100%;
        max-width: 100%;
    }
    /* 다음단계 */
    .log_re_box01{
        margin-top: 10px;
    }
    .n_button{
        height: 35px;
        font-size: 15px;
    }
}
@media screen and (max-width:430px){
    .log2toptxt{
        font-size: 15px;
        margin-bottom: 20px;
    }
    /* 인증번호 입력 */
    .sms_cert_section{
        margin-bottom: 20px;
    }
    .connect_wrap00{
        gap: 12px;
        align-items: stretch;
    }
    .connect_wrap00 #input_wrap {
        width: 100%;
        max-width: 100%;
    }
    .cert_label{
        font-size: 14px;
    }
    .connect_wrap00 #input_wrap .login_in {
        width: 100%;
        height: 50px;
        font-size: 17px;
        letter-spacing: 6px;
        max-width: 100%;
    }
    .vercom_btn{
        width: 100%;
        height: 50px;
        font-size: 15px;
    }
    .connect_wrap00[style*="flex-direction: column"] .vercom_btn {
        width: 100%;
        max-width: 100%;
        margin-top: 12px;
    }
    /* 다음단계 */
    .log_re_box01{
        margin-top: 7px;
        margin-bottom: 20px;
    }
    .n_button{
        height: 30px;
        font-size: 14px;
    }
}

/* 지자체 담당자 MANAGER-MN-03========================== */
/* 관리자 정보 */
.log_manage_wrap{
    border: 1px solid #ddd;
    background-color: #e7e7e7;
    padding: 10px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.log_manage{
    margin-bottom: 0;
    font-size:19px;
    font-weight: 700;
    color: #555;
}
.log_manage span{
    color: #11487c;
    font-weight: 900;
}
.log_manage_txt{
    margin-bottom: 0;
    color: #000000;
    font-weight: 900;
    font-size: 15px;
}
/* 이메일 정보 입력 */
.connect_wrap01{
    margin-top: 20px;
    margin-bottom: 10px;
}
.connect_box00{
    flex-direction: column;
    align-items: start;
    gap: 3px;
}
.log_intxt00{
    width: auto;
}
/* 인증버튼 */
.vercom_btn_wrap00{
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 35px;
}
.vercom_btn00{
    width: 33.3333%;
    height: 40px;
    border: 2px solid #11487c;
    background-color: #fff;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.vercom_btn00.on{
    background-color: #11487c;
    color: #fff;
    font-weight: 500;
}
.vercom_btn00 br{
    display: none;
}
@media screen and (max-width:500px){
    /* 관리자 정보 */
    .log_manage_wrap{
        gap: 2px;
        padding: 5px;
    }
    .log_manage{
        font-size: 18px;
    }
    /* 인증버튼 */
    .vercom_btn_wrap00{
        gap: 3px;
    }
    .vercom_btn00{
        height: 35px;
        font-size: 14px;
    }
}
@media screen and (max-width:430px){
    /* 관리자 정보 */
    .log_manage_wrap{
        margin-top: 5px;
        margin-bottom: 10px;
        gap: 0;
    }
    .log_manage{
        font-size: 15px;
        color: #333;
    }
    .log_manage_txt{
        font-size: 12px;
    }
    /* 이메일 정보 입력 */
    .connect_wrap01{
        margin-top: 15px;
    }
    /* 인증버튼 */
    .vercom_btn_wrap00{
        width: 90%;
        margin-bottom: 20px;
    }
    .vercom_btn00{
        font-size: 13px;
        height: auto;
        line-height: 17px;
    }
    .vercom_btn00 br{
        display: block;
    }
}
/* 비밀번호 재발급 MANAGER-MN-04========================== */
.log_password{
    margin-bottom: 35px;
}
.connect_wrap02{
    margin-top: 20px;
}
.log_re_box02{
    margin-top: 5px;
}
.log_password_txt{
    font-size: 16px;
    font-weight: 700;
    color: #ff0000;
    margin-top: 5px;
    margin-bottom: 0;
    text-align: center;
}
@media screen and (max-width:500px){
    .log_password_txt{
        font-size: 15px;
        text-align: left;
    }
    .log_password_txt br{
        display: none;
    }
}
@media screen and (max-width:430px){
    .log_password{
        margin-bottom: 20px;
    }
    .connect_wrap02{
        margin-top: 15px;
    }
    .log_password_txt{
        font-size: 14px;
        line-height: 17px;
        width: 90%;
        margin: 0 auto;
        margin-top: 5px;
    }
}

/* 알림창(MANAGER-POP-06) */
.managerpop06wrap{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}
.managerpop06wrap.active{
    visibility: visible;
    opacity: 1;
}
.managerpop06{
    background-color: #fff;
    width: 100%;
    max-width: 450px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.managerpop06wrap.active .managerpop06{
    transform: scale(1) translateY(0);
}
@keyframes modalSlideIn {
    from {
        transform: scale(0.95) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}
.managerpop06 .popmiddle00{
    padding: 30px 25px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}
.popmiddle00{
    padding: 30px 25px;
}
.pop06_txt{
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.6;
    text-align: center;
}
/* 알림창 닫기 버튼 크기 조정 */
.managerpop06 .poptopclose {
    width: 32px;
    height: 32px;
}
.managerpop06 .popclosebar {
    width: 18px;
    height: 2.5px;
}
.managerpop06 .poptopclose .bar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2.5px;
    background-color: #fff;
    border-radius: 1px;
    transform-origin: center;
}
.managerpop06 .poptopclose .bar1 {
    transform: translate(-50%, -50%) rotate(45deg);
}
.managerpop06 .poptopclose .bar2 {
    transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width:768px){
    .managerpop06{
        max-width: 90%;
    }
}
@media screen and (max-width:500px){
    .pop06_txt{
        font-size: 15px;
    }
    .popmiddle00{
        padding: 25px 20px;
    }
}
@media screen and (max-width:420px){
    .managerpop06{
        max-width: 95%;
    }
    .popmiddle00{
        padding: 20px 15px;
    }
    .pop06_txt{
        font-size: 14px;
    }
}

/* 로딩 인디케이터 모듈 -------------------------- */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-overlay.active {
    display: flex;
}

.loading-container {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-width: 300px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #2f7ac1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.loading-subtext {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin-top: 15px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2f7ac1, #4a9eff);
    border-radius: 3px;
    width: 0%;
    animation: progress 2s ease-in-out infinite;
    transition: width 0.3s ease;
}

@keyframes progress {
    0% {
        width: 0%;
        transform: translateX(0);
    }
    50% {
        width: 70%;
        transform: translateX(0);
    }
    100% {
        width: 100%;
        transform: translateX(0);
    }
}

@media screen and (max-width: 768px) {
    .loading-container {
        padding: 30px 30px;
        min-width: 250px;
    }
    
    .loading-spinner {
        width: 40px;
        height: 40px;
        border-width: 4px;
    }
    
    .loading-text {
        font-size: 16px;
    }
    
    .loading-subtext {
        font-size: 13px;
    }
}
