

.ct-login-tabs{
    flex: 1;
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    user-select: none;
    margin-bottom: 10px;
}

.ct-login-tab-item{
    flex: 1;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.ct-login-tab-item-active:before{
    content: "";
    position: absolute;
    height: 2px;
    background: red;
    bottom: 0;
    border-radius: 1px;
    z-index: 1;
    width: 50%;
}