body {
    background-color: #ffffff;
}

.login-wrapper {
    width: 100%;
    margin: 0 auto;
}

.login-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #f2f2f2;
}

.login-box {
    width: 100%;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row;
}

.login-left-box {
    width: calc(100% - 700px);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    position: relative;
    z-index: 1;
}

.login-form-box {
    width: 700px;
    min-height: 100vh;
    display: block;
    background-color: #ffffff;
    position: relative;
}

.login-form {
    padding: 150px 110px 55px;
}

.login-form-title {
    width: 100%;
    font-size: 35px;
    color: #1A1A1A;
    text-align: left;
    height: 50px;
    vertical-align: center;
}

.login-form-title img {
    /*width: 75px;*/
    height: 40px;
}

.login-form-sub-title {
    color: #999999;
    font-size: 14px;
    text-align: center;
}

.login-type-selected {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.login-type-item {
    background-color: #E8F1FC;
    border-radius: 25px;
    width: 161px;
    height: 49px;
    text-align: center;
    display: block;
    line-height: 49px;
    color: #1B77EF;
    font-size: 16px;
    cursor: pointer;
}

.login-type-item-active {
    color: #ffffff;
    background-color: #1B77EF;
}

.login-type-item:first-child {
    margin-right: 20px;
}

.login-form-content {
    margin-top: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 60px;
    border-radius: 20px;
    padding-left: 52px;
    font-size: 20px;
    border: 1px solid #DFDFDF;
}

.form-control-feedback {
    position: absolute;
    top: -1px;
    right: 0;
    left: -4px;
}

.form-control-feedback img {
    width: 25px;
    height: 25px;
}

.v-input-group {
    display: flex;
}

.login-btn {
    background-color: #1B77EF;
    color: #ffffff;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
    border-radius: 20px;
    border: 1px solid #1B77EF;
    margin-top: 15px;
    cursor: pointer;
}

.bottom-powered {
    width: auto;
    text-align: center;
    position: absolute;
    bottom: 40px;
    margin-left: -25px;
}

.checkbox-custom {
    position: relative;
    display: flex;
    align-items: center;
}

input[type=checkbox] {
    width: 22px;
    height: 22px;
}

.rememberme {
    padding: 7px 0 0 7px;
    color: #666666;
}

.error {
    color: red;
}
.validate-btn{
    height: 60px;
    width: 190px;
    border: 1px solid #1B77EF;
    color: #1B77EF;
    background-color: white;
    margin-left: 20px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}
.sign-account-info{
    margin-top: 10px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}
.sign-account-info .linked{
    color: #1B77EF;
    cursor: pointer;
}