.form-container {
    width: 58.4%;
    height: 66.7vh;
    background-color:#ccc;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: #fff;
}

.container {
    width: 62.5%;
}

.form-container .form-body {
    margin: 0 85px;
} 

.form-container .auth-form-group-custom .form-control {
    padding-top: 0.75rem;
}

.form-container .text-center:first-child {
    margin-top: 90px;
}
.text-center .text-content {
    font-size: 30px;
    font-weight: 600;
    color: #393939;
    letter-spacing: 5px;
    margin-top: 10px;
}

.copyright {
    text-align: center;
    font-family: PingFangTC;
    font-size: 16px;
    font-weight: 500;
}

.form-body .submit-button {
    width: 100%;
    background-color: #215dff;
    margin-top: 22px;
    height: 60px;
}

.left-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 66.7vh;
    width: 34.6%;
    object-fit: contain;
    background-image: url(../images/login/background.png);
    background-repeat: no-repeat;
    border-bottom-left-radius: 30px;
}

.left-logo {
    position: absolute;
    top: 40px;
    left: 40px;
}

.login-icon-user {
    width: 30px;
    height: 30px;
    background-image: url(../images/login/user.png);
}

.login-icon-lock {
    width: 30px;
    height: 30px;
    background-image: url(../images/login/lock.png);
}

.login-icon-password {
    width: 30px;
    height: 30px;
    background-image: url(../images/login/password.png);
}

@media (max-width: 1300px) {
    .left-bg {
        display: none;
    }
    .form-container {
        width: 80vw;
        border-radius: 30px;
    }
}

