body {
    background: linear-gradient(to bottom, #48279C, #15174A);
    overflow: hidden;
}

.gradient_circle {
    width: 600px;
    height: 600px;
    background: #0074E9;
    filter: blur(150px);
    position: absolute;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
    z-index: -1;
}

.wrapper {
    height: 100vh;
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hello {
    width: 50%;
    color: #fff;
    margin-top: -100px;
    line-height: 90px;
}

.hello1 {
    font-size: 60px;
}

.hello2 {
    font-size: 80px;
}

.hello3 {
    font-size: 30px;
    color: #767ED4;
}

.login_box {
    width: 50%;
}

.login {
    width: 555px;
    height: 600px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(100px);
    border: 2px solid rgba(255,255,255,.1);
    border-radius: 60px;
    float: right;
    padding: 70px 50px;
    color: #fff;
}

.login_title {
    font-size: 34px;
    text-align: center;
}

.login_id {
    margin-bottom: 30px;
    margin-top: 80px;
}

.login_id input, .login_pw input {
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 100px;
    height: 54px;
    margin-top: 10px;
    padding: 0 20px;
}

.login_button a {
    display: inline-block;
    width: 100%;
    background: rgba(255,255,255,.3);
    border-radius: 100px;
    line-height: 54px;
    color: #fff;
    font-size: 16px;
    margin-top: 50px;
    text-align: center;
}

/* -- desktop( ~ 1380px ) -- */
@media screen and (max-width: 1380px) {
    .wrapper {
        padding: 0 80px;
    }

    .hello {
        line-height: 70px;
    }

    .hello1 {
        font-size: 50px;
    }

    .hello2 {
        font-size: 70px;
    }

    .hello3 {
        font-size: 24px;
    }

    .login {
        width: 500px;
        height: 550px;
    }
}