.custom-login {
    background: rgb(88, 96, 120);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-login .login-content {
    width: 600px;
    height: 400px;
    display: flex;
}

.custom-login .login-content .login-left {
    width: 240px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    /* background: rgb(148, 81, 65); */
}

.custom-login .login-content .login-right {
    width: 360px;
    height: 400px;
    padding: 20px;
    color: #fff;
}

.am-text-center h2 {
    font-weight: 500;
    font-size: 24px;
    margin-left: 20px;
    margin-top: 20px;
    color: #fff;
    text-align: left;
}

.login-btn {
    color: #fff;
    background: rgb(148, 81, 65);
    width: 100%;
    border: 0;
    height: 40px;
    padding: 0;
    line-height: 40px;
}

.login-btn:hover {
    background: rgb(148, 81, 65);
}

#username,
#password, #register-form .register-input {
    background: transparent;
    color: #fff;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ccc;
}

#username:focus,
#password:focus, #register-form .register-input:focus {
    outline: none;
    box-shadow: none;
}

.forget {
    font-size: 13px;
    margin-top: 20px;
}

.forget .login-forget {
    cursor: pointer;
}

.forget .login-register {
    float: right;
    cursor: pointer;
}