@font-face {
    font-family: 'KBO-Dia-Gothic_bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/KBO-Dia-Gothic_bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

.modal-login {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    top: 0;
    left: 0;
    display: none;
    z-index: 99999
}

.modal-login .modal_content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #1f1f1f;
    width: 90%;
    max-width: 320px;
    overflow: visible;
    box-shadow: 0px 0px 10px #01278f, 0px 0px 30px #2782f2;
    background: #00000088;
    backdrop-filter: blur(10px);
}

.modal-login .logingirl {
    position: absolute;
    left: 0;
    bottom: 0;
}

.modal-login .lg_frm_arr .frm-logo {
    display: block;
    width: 100%;
    margin-top: 40px;
    object-position: center;
    background: linear-gradient(135deg, #413a5322 20%, transparent 25%, transparent 50%, #413a5322 55%, #413a5322 70%, transparent 75%, transparent), #000000;
    background-size: 50rem 50rem;
    animation: effect_login_logo 2s infinite linear;
}

@keyframes effect_login_logo {
    0% {
        background-position: 0rem;
    }
    100% {
        background-position: 50rem;
    }
}

.modal-login .lg_frm_arr h4 {
    font-size: 0;
    border-bottom: solid 2px #444;
}

.modal-login #userid, 
.modal-login #passwd {
    height: 46px;
    text-align: center;
    background: #000;
    border: 1px solid #4c4524;
    border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    outline: none;
    font-size: 14px;
    transition: 0.2s;
}

.modal-login #userid:focus, 
.modal-login #passwd:focus {
    border: solid 1px #2782f2;
}

.modal-login #login-btn, 
.modal-login #join-btn {
    width: 100%;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
    display: block;
    margin-top: 10px;
    border-radius: 10px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.modal-login #login-btn .fill, 
.modal-login #join-btn .fill {
    background: #0f0f0f;
}

.modal-login #login-btn {
    margin-top: 10px;
}

.modal-login .modal-close {
    position: absolute;
    font-size: 30px;
    right: 10px;
    top: 10px;
    color: #2782f2;
    z-index: 9;
    transform: rotate(0deg);
    transition: 0.5s;
}

.modal-login .modal-close:hover {
    color: #2782f2;
    transform: rotate(360deg);
}

.modal-login .inloforma {
    padding: 15px;
    box-sizing: border-box;
}

.modal-login .kakap-sns {
    margin-top: 10px;
    text-align: center;
    padding: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    font-size: 12px;
}

.modal-login .kakap-sns i {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
    color: #2782f2;
}

.modal-login .kakap-sns strong {
    font-size: 12px;
}

.modal-login .kakap-sns a {
    color: #2782f2;
}

.modal-login .kakap-sns a:hover {
    color: #48b8f8;
}

