.login-options {
    text-align: center;

    &-title {
        position: relative;
        z-index: 1;
        margin-top: 20px;
        margin-bottom: 14px;

        &:after {
            position: absolute;
            content: "";
            left: 0;
            right: 0;
            bottom: 12px;
            width: 100%;
            height: 1px;
            background-color: #E0E2E3;
            z-index: -1;
        }

        p {
            font-size: 15px;
            color: #55585B;
            margin-bottom: 0;
            padding: 0 20px;
            position: relative;
            display: inline-block;
            background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity));
        }
    }

    .social-icons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        li {
            list-style: none;

            > a {
                border-radius: 2px;
                width: 28px;
                height: 28px;
                display: block;
                background-position: 0 0;
                background-repeat: no-repeat;
            }

            .google {
                background: url('../images/google.svg') no-repeat center center;
                border-radius: 2px;
                box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.25);
                border: 1px solid #4285f4;
            }

            .linkedin,
            .linkedin-openid {
                background: url('../images/linkedin.png') no-repeat;
                background-position: 0 -38px !important;
            }

            .facebook {
                background: url('../images/facebook.png') no-repeat;
                background-position: 0 -38px !important;
            }

            .github {
                background: url('../images/github.png') no-repeat;
                background-position: 0 -38px !important;
            }
        }
    }
}
