body {
    display: flex;
    flex-direction: row;
    margin: 0;
}

p {
    margin: 0;
}

.left-container {
    width: 640px;
    height: 100%;
    position: relative;
}

.left-container-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    background: url("/images/login_bg.jpg") no-repeat center center;
    background-size: cover;
}

.left-info-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.left-info-wrap-overlay {
    width: 100%;
    height: 100%;
    opacity: 0.1;
    position: absolute;
    background: white;
}

.main-info {
    width: 100%;
    height: 94%;
    display: flex;
    flex-direction: column;
    padding-top: 30%;
    align-items: center;
    justify-content: flex-start;
    color: white;
}

.main-info > p:nth-child(1) {
    font-size: 54px;
    font-weight: 700;
}

.main-info > p:nth-child(2) {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
}

.main-info > p:nth-child(3),
.main-info > p:nth-child(4) {
    font-size: 16.8px;
    font-weight: 300;
}

.sub-info {
    width: 100%;
    height: 6%;
    display: flex;
    flex-direction: column;
    text-align: left;
    font-family: Pretendard;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 30px;
}

.sub-info p {
    position: relative;
}

.sub-info-top,
.sub-info-bottom {
    display: flex;
    gap: 10px;
}

.sub-info-top p:not(:last-child)::after,
.sub-info-bottom p:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
}

.right-container {
    position: relative;
    overflow: hidden;
    width: calc(100% - 640px);
    height: 100%;
}

.login-form-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form-box {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 480px;
    height: 485px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
}

.login-form-title {
    font-size: 15px;
    font-weight: 500;
    color: white;
    text-align: center;
    background: var(--point-color);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 15px;
}

.login-form {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 50px 50px;
}

.login-form img {
    width: 65%;
    margin-bottom: 40px;
}

.user-name,
.password {
    width: 100%;
    padding: 10px 15px;
    color: #000;
    box-shadow: 0px 0px 0px 1px #ddd;
    outline: none;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
}

.login-btn {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    background-color: var(--point-color);
    padding: 0px 25px;
    border: 0;

    color: white;
    text-align: center;
    font-weight: 500;
}

.bg1,
.bg2,
.bg3 {
    animation: slide 3s ease-in-out infinite alternate;
    background: linear-gradient(-45deg, #eee 50%, #fff 50%);
    bottom: 0;
    left: -110%;
    opacity: 0.1;
    position: absolute;
    right: -70%;
    top: 0;
    height: 100%;
    z-index: -999;
}

.bg2 {
    animation-direction: alternate-reverse;
    animation-duration: 5s;
}

.bg3 {
    animation-duration: 6s;
}

@keyframes slide{
    0%{transform:translateX(-25%)}
    100%{transform:translateX(25%)}
}