.left-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: var(--semi-transparent-primary-color);
}

.right-section {
    background-color: #ffffff;
}

.login-card {
    height: 100vh;
}

.login-card .card {
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.border-bottom-color {
    border-bottom: 2px solid var(--primary-color);
}

.input-fa {
    font-size: 0.8rem;
    color: #ffffff;
}

@media (max-width: 766px) {
    .login-card .card {
        width: 100%;
        max-width: 400px;
        margin: auto;
    }

    .left-section {
        display: none;
    }

    .right-section-overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        background: var(--semi-transparent-primary-color);
    }

    .right-section {
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media (max-width: 480px) {
    .login-card .card {
        width: 100%;
        max-width: 300px;
        margin: auto;
    }
}