
.left-side {
    position: relative;
    padding: 2rem !important;
    background: #172737 !important;
    color: white;
    height: 100vh;
    min-height: 664px;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: .05;
        background-image: url("../img/logo-uhaPYgh.png");
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .home-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 2.5rem;
        height: 100%;
        position: relative;

        & .home-brand {
            position: absolute;
            top: 0;
            left: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            gap: 0;
            text-decoration: none;
            color: white;

            & img {
                width: 32px;
            }

            & > div {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: .4rem;

                & > div {
                    font-size: 1.75rem;
                    line-height: 1.75rem;
                }
            }

            & > small {
                font-size: .76rem;
            }
        }

        & h1 {
            font-size: 2.5rem;
        }
        & h1 span,
        & .home-brand > div > div span {
            color: var(--bs-success);
        }
        & h2 {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            font-style: italic;
        }
    }
}

.right-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    min-height: 664px;

    .home-connect {
        /*display: flex;*/
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        gap: 3rem;
        height: calc(100vh - 93px);
        padding: 1rem 7rem;
        color: var(--bs-primary);

        & h3 {
            text-align: center;
            font-size: 1.5rem;
        }

        & p {
            text-align: center;

            &.text-success {
                /*color: var(--bs-success);*/
                font-size: 1.1rem;
                font-weight: bold;
            }
        }

        & .btn {
            width: 230px;
        }
    }
}

.home-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: var(--bs-success);
}

@media (max-width: 1200px) {
    .left-side,
    .right-side {
        height: auto;
        min-height: auto;
    }
    .left-side .home-text .home-brand {
        position: relative;
    }
    .right-side .home-connect {
        height: auto;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
}