.wrap_login {
    width: 100vw;
    height: 100vh;
    z-index: 999;
}
#login {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/backimg1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    image-rendering: pixelated;
    position: relative;
    animation: backimg 10s ease-in-out infinite;
}
@keyframes backimg {
    0% {
        opacity: 100%;
    }
    50% {
        opacity: 95%;
    }
    100% {
        opacity: 100%;
    }
}


.login {
    width: 600px;
    height: auto;
    background-color: rgba(41, 138, 241, 0.7);
    opacity: 100%;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}
.login_section {
    padding: 50px 75px 50px 75px;
}

/* 로고 */
.login_section ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_section ul:nth-child(1) {
    margin-bottom: 50px;
}

/* 아이디 */
.login_id {
    margin-bottom: 10px;
}
.login_id li {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 15px;
    width: 100%;
    height: 50px;
}
.login_id li div:nth-child(1) {
    width: 110px;
    font-size: 20px;
    font-weight: 700;
    color: #298AF1;
    margin-left: 20px;
}
.login_id li div:nth-child(2) input {
    width: 340px;
    font-size: 20px;
    font-weight: 700;
    border: 0;
    padding: 0;
    outline: none;
    display: flex;
    align-items: center;
    line-height: 24px;
    height: 24px;
    padding-right: 20px;
}
.login_id li div:nth-child(2) input::placeholder {
    color: #CCCCCC;
}

/* 패스워드 */
.login_pw {
    margin-bottom: 50px;
}
.login_pw li {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 15px;
    width: 100%;
    height: 50px;
}
.login_pw li div:nth-child(1) {
    width: 110px;
    font-size: 20px;
    font-weight: 700;
    color: #298AF1;
    margin-left: 20px;
}
.login_pw li div:nth-child(2) input {
    width: 340px;
    font-size: 20px;
    font-weight: 700;
    border: 0;
    padding: 0;
    outline: none;
    display: flex;
    align-items: center;
    line-height: 24px;
    height: 24px;
    padding-right: 20px;
}
.login_pw li div:nth-child(2) input::placeholder {
    color: #CCCCCC;
}

/* 로그인 버튼 */
.login_btn li {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg,#0C4AF2, #298AF1, #0C4AF2);
    background-size: 150% 150%;
    border-radius: 15px;
    width: 100%;
    height: 50px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}
.login_btn li:hover {
    animation: loginbtn 5s ease-in-out infinite;
}
@keyframes loginbtn {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

/* 크롬 텍스트 */
.login_chrome {
    width: 600px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 15px;
    position: absolute;
    bottom: 0;
    left: 34%;
    transform: translate3d(1%, -134%, 0);
}
.login_chrome_sec {
    padding: 20px 50px 20px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_chrome_sec li:nth-child(1) {
    margin-right: 30px;
    display: flex;
    align-items: center;
}
.login_chrome_sec li:nth-child(2) {
    font-size: 24px;
    font-weight: 700;
    color: #298AF1;
}

/* 로그인 실패 모달 */
.login_fail {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.login_fail_sec {
    width: 600px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_fail_sec_padding {
    padding: 20px 50px 20px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_fail_sec_padding li:nth-child(1) {
    margin-right: 30px;
    display: flex;
    align-items: center;
}
.login_fail_sec_padding li:nth-child(2) {
    font-size: 24px;
    font-weight: 700;
    color: #298AF1;
}
