.container-fluid {
    height: 100vh;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    font-weight: bold;
    font-size: 20px;
    background: #e9f7ef;
    padding: 5px 15px;
    border-radius: 5px;
}

.left-panel {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

.right-panel {
    background: url('../../img/bg-auth.png') no-repeat center center / cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    margin: 0 10px;
}

.google {
    background: #db4437;
}

.linkedin {
    background: #0077b5;
}

.form-control {
    background: #e9f7ef;
    border: none;
}

.btn-signin {
    background: #20c997;
    border: none;
    width: 100%;
}

@media (max-width: 768px) {
    .left-panel {
        order: 1;
    }

    .right-panel {
        order: 2;
    }
}