body{
    font-size: 16px;
    max-width: none;
    min-height: 100vh;
    background: url(../images/login_bg.jpg) no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
main{
    width: calc(100% - 40px);
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 240px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* login */
.login_wrap{
    width: 100%;
    max-width: 480px;
}
.login_wrap .input-box{
    margin: 64px 0;
    text-align: center;
}
.login_wrap > ul{
    display: flex;
    background: #ECEDED;
    border-radius: 16px;
}
.login_wrap > ul li{
    height: 48px;
    flex: 1;
}
.login_wrap > ul li button{
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;    width: 100%;
    font-size: 16px;
    color: #979A9C;
    height: 100%;
    background: transparent;
    cursor: pointer;
    border: none;
    outline: none;
}
.login_wrap > ul li button.active{
    border-radius: 16px;
    background: #13362D;
    color: #fff;
}


/* below 1280 */
@media screen and (max-width: 1280px){

    .login_wrap{
        width: 100%;
        padding: 0;
        background: none;
        backdrop-filter: none;
    }
    .login_wrap .input-box{
        margin: 44px 0;
    } 
    .login_wrap .input-box form dt{
        display: none;
    }
    .login_wrap > ul li{
        height: 40px;
    }
    .login_wrap > ul li button{
        font-size: 15px;
    }
    .logo_wrap img{
        width: 160px;
        height: auto;
    }

}