html{
    background: #EBEBEB;
}
body{
    max-width: 1280px;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 48px);
    padding: 24px 0;
    background: #EBEBEB;
}
main{
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: auto;
    padding: 0;
    box-shadow: 0 0 60px rgba(0,0,0,4%);
    background: #f4f4f4;
}
main > div{
    flex: 1;
    padding: 90px 40px;
}

/* logo */
.logo_wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #E3E3E3;
}

/* login */
.login_wrap{
    font-family: 'Roboto', sans-serif;
}
.login_wrap .input-box{
    margin-bottom: 40px;
}
.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;
    font-weight: bold;
    display: block;
    color: #9D9FB0;
    margin-top: 40px;
    text-align: center;
}
.login_wrap .sign-box > div{
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #DEDEDE;
    padding-bottom: 24px;
}
.login_wrap .sign-box > div div{
    padding: 0 8px;
}
.login_wrap .sign-box > div span{
    display: block;
    flex: 1;
    width: 250px;
    height: 1px;
    background: #DEDEDE;
}
.login_wrap .sign-box a{
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    border-radius: 60px;
    background: #f4f4f4;
    color: #49CABA;
    box-shadow: 0 4px 32px rgba(124, 167, 162, 20%);
}



/* below 1280 */
@media screen and (max-width: 1280px){

    body{
        padding: 0;
    }
    main{
        width: calc(100% - 48px);
        flex-direction: column;
    }
    .logo_wrap img{
        width: 240px;
        height: auto;
        transition: .3s;
    }
    main > div{
        flex: auto;
        padding: 60px 24px;
    }

}



/* below 720 */
@media screen and (max-width: 720px){

    html{
        background: #f4f4f4;
    }
    body{
        background: #f4f4f4;
        padding: 0;
    }
    main{
        width: 100%;
        border: none;
        flex-direction: column;
        justify-content: center;
        border-radius: 0;
        box-shadow: none;
        padding: 80px 0;
    }
    .logo_wrap{
        padding: 0;
        margin-bottom: 80px;
        border-right: 0;
    }
    .login_wrap{
        border-radius: 16px 16px 0 0;
        padding: 0 32px 0 32px;
    }
    .login_wrap .input-box .tit,
    .login_wrap .input-box p{
        display: none;
    }
    .login_wrap .input-box a{
        text-decoration: underline;
    }

}