body{
    max-width: 1280px;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 48px);
    padding: 24px 0;
}
main{
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: auto;
    padding: 0;
    border: 1px solid #E9E9E9;
}
main > div{
    flex: 1;
    padding: 68px 100px;
}

/* logo */
.logo_wrap{
    background: #5676F4;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* login */
.login_wrap{
    font-family: 'Roboto', sans-serif;
    background: #fff;
    position: relative;
}
.login_wrap .input-box{
    margin-bottom: 60px;
}
.login_wrap .input-box .tit{
    font-size: 32px;
    font-weight: bold;
    color: #5676F4;
}
.login_wrap .input-box p{
    font-size: 14px;
    font-weight: 300;
    color: #B7BBCB;
    padding: 12px 0 32px;
}
.login_wrap .input-box a{
    font-size: 16px;
    display: block;
    color: #B7BBCB;
    margin-top: 32px;
    text-align: center;
}
.login_wrap .input-box .chk_wrap{
    margin-top: 16px;
}
.login_wrap .sign-box > div{
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #E9E9E9;
    padding-bottom: 16px;
}
.login_wrap .sign-box > div div{
    padding: 0 8px;
}
.login_wrap .sign-box > div span{
    display: block;
    flex: 1;
    width: 200px;
    height: 1px;
    background: #E9E9E9;
}
.login_wrap .sign-box a{
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    border-radius: 8px;
    background: #fff;
    color: #5676F4;
    box-shadow: 0 0 24px rgba(101, 127, 223, 16%);
}

/* select */
.select_wrap{
    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;
    position: absolute;
    right: 100px;
    top: 68px;
    display: flex;
}
.select2-container{
    width: 140px !important;
    outline: none;
}
.select2-container--default .select2-selection--single{
    font-size: 16px;
    height: 30px;
    outline: none;
    border: 1px solid #B7BBCB;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color: #B7BBCB transparent transparent transparent;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    color: #1B1C24;
    padding-left: 12px;
}
.select2-search--dropdown{
    display: none;
}
.select2-dropdown{
    border: 1px solid #B7BBCB;
    overflow: hidden;
}
.select2-results__options{
    font-size: 16px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background: #F3F5FA;
    color: #5676F4;
}
.select2-container--default .select2-results__option--selected{
    background-color: transparent;
}
.select2-results__option{
    padding: 6px 12px;
}
.select2-results__options::-webkit-scrollbar {
    width: 6px;
    display: block;
}
.select2-results__options::-webkit-scrollbar-thumb {
    height: 103px;
    border-radius: 10px;
    background: #C5C5C5;
    margin-right: 3px;
}



/* below 1280 */
@media screen and (max-width: 1280px){

    main{
        width: calc(100% - 48px);
        flex-direction: column;
    }
    .logo_wrap img{
        width: 140px;
        height: auto;
        transition: .3s;
    }
    main > div{
        flex: auto;
        padding: 60px 24px;
    }
    .select_wrap{
        top: 60px;
        right: 24px;
    }

}



/* below 720 */
@media screen and (max-width: 720px){

    body{
        background: #5676F4;
        height: auto;
        padding: 0;
    }
    main{
        width: 100%;
        border: none;
        min-height: 100vh;
        flex-direction: column;
        border-radius: 0;
    }
    .logo_wrap{
        padding: 80px 0;
    }
    .logo_wrap img{
        width: 180px;
    }
    .login_wrap{
        border-radius: 16px 16px 0 0;
        padding: 90px 32px 60px;
    }
    .login_wrap .input-box .tit,
    .login_wrap .input-box p{
        display: none;
    }
    .select_wrap{
        top: 40px;
        right: 32px;
    }
    .select2-container .select2-selection--single .select2-selection__rendered,
    .select2-results__options{
        font-size: 14px;
    }

}