.mf-login-tabs-wrapper {
    margin-bottom: 1rem;
}

.mf-login-tabs {
    border-bottom: none !important;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.mf-login-tabs-wrapper::after {
    content: '';
    display: block;
    height: 2px;
    background: #e0e8f0;
    width: 100%;
    margin-top: -5.5px; /* компенсация смещения относительно синей линии таба */
}

.mf-login-tabs .nav-item {
    margin-bottom: 0;
    position: relative;
}

.mf-login-tabs .nav-item::after {
    content: '';
    display: block;
    height: 2px;
    background: transparent;
    width: 100%;
    position: relative;
    z-index: 1;
    transition: background 0.2s;
}

.mf-login-tabs .nav-item:has(.nav-link.active)::after {
    background: #4a90d9;
}

.mf-login-tabs .nav-link {
    border: none !important;
    border-radius: 0;
    background: none;
    color: #9ab0c8;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    display: block;
    transition: color 0.2s;
}

.mf-login-tabs .nav-link:hover {
    color: #4a90d9;
}

.mf-login-tabs .nav-link.active {
    color: #4a90d9;
    background: none;
}