*   {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.container  {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.col-1  {
    flex-basis: 50%;
    flex-grow: 1;
    background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url(img/Vote.jpg);
    background-size: cover;
    background-position: center;
    min-height: inherit;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.col-2  {
    flex-basis: 50%;
    flex-grow: 1;
}

.logo {
    width: 200px;
    margin-bottom: 30px;
}

.col-1 ul   {
    list-style: none;
}

.col-1 ul li {
    display: flex;
    align-items: center;
    margin: 12px 0;
}

.col-1 ul li img    {
    width: 20px;
    margin-right: 15px;
}

