
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.gloginWrp {
    display: flex;
}

.gloginAside {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

    .gloginAside>img {
        position: absolute;
        z-index: 1;
        top: 40px;
        left: 40px;
        width: 100px;
    }

.gloginVec {
    display: flex;
    align-items: center;
    height: 100vh;
    padding: 0 1rem
}
    .gloginVec img{
        display: block;
        max-width: 100%;
        object-fit: contain;
    }
    .gloginBox {
        width: calc(100vw - 500px);
        display: flex;
        align-items: center;
        background-color: #f5f5f7;
    }

.gloginCont {
    margin-left: 80px;
    padding: 30px 60px 0 30px;
    width: 416px;
    box-sizing: content-box;
}

    .gloginCont h1 {
        margin-bottom: 40px;
        font-size: 24px;
        color: #0d0c22;
    }

.gloginVeri {
    text-align: center;
    position: relative;
    margin: 30px 0;
    color: #6e6d7a;
    font-size: 14px;
}

    .gloginVeri::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #e7e7e9;
    }

    .gloginVeri span {
        background-color: #f5f5f7;
        position: relative;
        z-index: 2;
        padding: 5px .8rem;
        line-height: 150%;
    }

.gloginCont p {
    text-align: center;
    color: #3d3d4e;
    font-size: 14px;
}

.gloginGroup {
    margin-bottom: 12px;
}

    .gloginGroup label {
        display: block;
        margin: 14px 0 4px;
        color: #0d0c22;
        font-size: 15px;
        font-weight: 600;
    }

    .gloginGroup input {
        font-size: 15px;
        border: 1.5px solid #e7e7e9;
        font-weight: 400;
        height: 56px;
        padding: 18px 20px;
        line-height: 28px;
        border-radius: 12px;
        background-color: #fff;
        color: #0d0c22;
        display: block;
        width: 100%;
    }

    .gloginGroup span {
        font-size: 12px;
        color: #fc0000;
    }

.gloginPass {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.gloginCont a {
    color: #0d0c22;
    font-size: 14px;
    text-decoration: underline;
}

.gloginBtn {
    display: block;
    margin: 20px 0;
    height: 56px;
    font-size: 15px;
    background-color: #0d0c22;
    border: none;
    color: #fff;
    width: 100%;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.15s cubic-bezier(0.32, 0, 0.59, 0.03);
}

    .gloginBtn:hover {
        background-color: #565564;
    }

.passSuccess {
    text-align: center;
}

    .passSuccess > img {
        height: 200px;
        border-radius: 24px;
        margin-bottom: 2rem;
    }

@media all and (min-width: 1300px) {
    .gloginVec img {
        width: 600px;
    }

    .gloginBox {
        width: calc(100vw - 600px);
    }
}

@media all and (min-width: 1500px) {
    .gloginCont {
        margin-left: 130px;
    }
    .gloginVec img{
        width: 800px;
    }
    .gloginBox {
        width: calc(100vw - 800px);
    }
}

@media all and (max-width: 1100px) {
    .gloginCont {
        margin-left: 50px;
    }
}

@media all and (max-width: 992px) {
    .gloginAside {
        display: none;
    }

    .gloginBox {
        width: 100%;
        min-height: 100vh;
        align-items: center;
    }

    .gloginCont {
        margin-left: 0;
        width: 100%;
        padding: 30px;
    }

    .gloginVeri span {
        display: block;
        padding: 0;
        text-align: left;
    }

    .passSuccess .gloginVeri span {
        text-align: center;
    }

    .gloginVeri::before {
        display: none;
    }

    .gloginCont h1 {
        margin-bottom: 10px;
    }
}

