.auth-container {
    max-width: 350px;
    width: 100%;
}

.divider {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 16px 0;
    color: #777;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.divider span {
    padding: 0 10px;
}

.social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;

    .auth-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;

        .auth-icon.google {
            background: url("/images/icons/auth/google.svg") no-repeat center center;
            background-size: 80%;
            background-position: 0;
            width: 36px;
            height: 36px;
        }

        .auth-icon.yandex {
            background: url("/images/icons/auth/ya.svg") no-repeat center center;
            background-size: 100%;
            background-position: 0;
            width: 36px;
            height: 36px;
        }
    }
}